aspose file tools
The moose likes Java in General and the fly likes exec java program under linux Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply locked New topic
Author

exec java program under linux

Gizzmo Zeuzere
Ranch Hand

Joined: May 11, 2001
Posts: 45
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
Please don't post duplicate posts in different forums. Followups can go here.


"I'm not back." - Bill Harding, Twister
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: exec java program under linux
 
Similar Threads
Execute "echo $BASHPID" in Linux using Java
How to fire top+grep command using java on Linux
exec a java program under linux
run linux command in java
Exec java