[Ilugc] Executing Linux Commands with Java GUI

Arun Venkataswamy arun289 at gmail.com
Tue Feb 16 11:38:57 IST 2010


On Tue, Feb 16, 2010 at 8:34 AM, Ramesh Jothimani <linuxrockers at gmail.com>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


More information about the ilugc mailing list