Hello, I want to run java program in a java program. When i do this : Process p = Runtime.getRuntime().exec(jav); try{ p.waitFor();} catch(InterruptedException ire){} InputStream is = p.getErrorStream(); BufferedReader br =new BufferedReader(new InputStreamReader(is)); while(br.readLine() != null) { agl.console.append(br.readLine()); } } catch(IOException ioe){} where jav="java prog" It works under windows but not under linux, i don't understand. Can anybody helps me ?
Jim Yingst
Wanderer
Sheriff
Joined: Jan 30, 2000
Posts: 18670
posted
0
Please don't post duplicate posts in different forums. Followups can go here.