[Ilugc] Executing Linux Commands with Java GUI

  • From: arun289@xxxxxxxxx (Arun Venkataswamy)
  • Date: Tue Feb 16 11:39:31 2010

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

Other related posts: