Hi ich habe vollgende Idee:
1. Auf dem server ist ein jar file mit main() methode, die ich aufrufen will aber von einem anderen file.java...
z.B Hello.jar --> Hello.java Hello.mf
public class Hello {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
_______________________________________________
Start.java
import java.io.IOException;
public class Start{
public static void main(String []args){
try{
Runtime runtime = Runtime.getRuntime();
runtime.exec("java -jar Hello.jar");
}catch(IOException e){}
}
}
_____________________________________________________
aber leider geht das nicht