Re: python under java2

2005-02-07 Thread Steve Horsley
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();

python under java2

2005-02-06 Thread motokoit
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.