aspose file tools
The moose likes Java in General and the fly likes a bug in the Runtime class Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "a bug in the Runtime class" Watch "a bug in the Runtime class" New topic
Author

a bug in the Runtime class

saikrishna cinux
Ranch Hand

Joined: Apr 16, 2005
Posts: 689
[code]
public class Test{
public static void main(String args[])throws Exception {
Runtime rt=Runtime.getRuntime();
Process p=rt.exec("java Test");
System.out.println("asdasdada");
System.out.println(p.waitFor());

}
}
[\code]
here i am running the same file being inside the same file...
but it is unable to run new program..
can any one tell me why it is unable to run a program in loop form


A = HARDWORK B = LUCK/FATE If C=(A+B) then C=SUCCESSFUL IN LIFE else C=FAILURE IN LIFE
SCJP 1.4
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35446
    
    9
It's hard to say what's going on since you don't mention what is going on (just that something doesn't work), but -as this article explains- you may need to use the full path of the "java" executable, and you probably need to handle the output that the child process generates.


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: a bug in the Runtime class
 
Similar Threads
get fooled with this programs
Set environment variable of UNIX by java program
Copying file from one PC to the other PC on a network.
files with no public classes...
Object Creation