Hi guys,
I am trying to execute a .jar executable within a java file but nothing happens, no errors, just nothing in general!
public void executeCmd(){
Runtime run = Runtime.getRuntime();
try {
Process proc = run.exec(cmd);
} catch (IOException e) {
//sendmessage saying there was an error
}
}