On Tue, Feb 16, 2010 at 8:34 AM, Ramesh Jothimani <[email protected]>wrote:

> How to execute Linux commands in terminal with the help of Java GUI and how
> to store the result back to a file?
>


This sample code might be a starting point...

Process p = Runtime.getRuntime().exec("whatever command");

BufferedReader stdInput = new BufferedReader(new
            InputStreamReader(p.getInputStream()));

// read the output
String s;
while ((s = stdInput.readLine()) != null) {
   System.out.println(s);
}


Regards,
Arun



-- 
Arun Venkataswamy
http://arun289.wordpress.com
_______________________________________________
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to