aspose file tools
The moose likes Java in General and the fly likes Help for getting output of Runtime.getRuntime().exec() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Help for getting output of Runtime.getRuntime().exec()" Watch "Help for getting output of Runtime.getRuntime().exec()" New topic
Author

Help for getting output of Runtime.getRuntime().exec()

divya g nair
Greenhorn

Joined: Jan 12, 2009
Posts: 2
I have executed the following command to compile a java program.
Runtime.getRuntime().exec("cmd/c start C:/jdk1.4/BIN/javac filename.java");
i got the class files if there is no errors. But I want to read the errorlist if there any.
My code is like this Anyone can help me please.



thanks in advance
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35224
    
    7
You may want to read in this article to learn about all the issues you need to be aware of when dealing with Runtime.exec.


Android appsImageJ pluginsJava web charts
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32611
    
    4
Please use the CODE button, and maintain indentation.

Use of Runtime.exec() is slightly easier since the introduction of the ProcessBuilder class, but nobody should go near Runtime.exec() without reading the article Ulf quoted.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Help for getting output of Runtime.getRuntime().exec()
 
Similar Threads
Runtime.getRuntime() help plzzzzzzzz
How to run .java file from Runnable
Runtime.getRuntime().exec() from JSP page
waitfor on a process
Running java program from another java program