Hi, I want to execute a jar file from a directory “game” instead of the current directory.
If I have the jar in the current directory, Runtime.getRuntime().exec(“java -jar game.jar”); works fine.
But when i put the jar in the game folder, and try Runtime.getRuntime().exec(“java -jar game/game.jar”); or Runtime.getRuntime().exec(“java -jar ./game/game.jar”); or Runtime.getRuntime().exec(new String[]{“java” “-jar” “game.jar”},new String[0], new File(“game/”); Nothing works >:(
Does anyone know why / how I can fix it?
Try Runtime.exec(“java -jar game.jar”, null, new File(“game/”))
Thanks!