motokoit wrote:
For some reason i need to start a python script from inside a java code. The
main part of the code is something like this
try{
Runtime rt = Runtime.getRuntime();
System.out.println("start");
Process proc = Runtime.getRuntime().exec("python myscript.py");
proc.waitFor();
For some reason i need to start a python script from inside a java code. The
main part of the code is something like this
try{
Runtime rt = Runtime.getRuntime();
System.out.println("start");
Process proc = Runtime.getRuntime().exec("python myscript.py");
proc.waitFor();
System.out.