Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / March 2006

Tip: Looking for answers? Try searching our database.

I m enable to run Linux command by Java code,

Thread view: 
Mohit Mehral - 22 Mar 2006 10:03 GMT
Hi programmer's,
i have made javaCode, program run perfectly but created file not having
any data.i need a code which run perfectly and also save output of
command in textfile.Please provide exect matiral,plz dnt send the link.
Let me describe in brife:
I need to play command " df  -h  > text.txt"
below program create a file but never add data in text.txt
i havent modifyed it for linux(red hat 9).
*************************
// GoodWinRedirect.java
import java.util.*;
import java.io.*;

class StreamGobbler extends Thread
{
   InputStream is;
   String type;
   OutputStream os;

   StreamGobbler(InputStream is, String type)
   {
       this(is, type, null);
   }

   StreamGobbler(InputStream is, String type, OutputStream redirect)
   {
       this.is = is;
       this.type = type;
       this.os = redirect;
   }

   public void run()
   {
       try
       {
           PrintWriter pw = null;
           if (os != null)
               pw = new PrintWriter(os);

           InputStreamReader isr = new InputStreamReader(is);
           BufferedReader br = new BufferedReader(isr);
           String line=null;
           while ( (line = br.readLine()) != null)
           {
               if (pw != null)
                   pw.println(line);
               System.out.println(type + ">" + line);
           }
           if (pw != null)
               pw.flush();
       } catch (IOException ioe)
           {
           ioe.printStackTrace();
           }
   }
}

public class GoodWinRedirect
{
   public static void main(String args[])
   {
       if (args.length < 1)
       {
           System.out.println("USAGE java GoodWinRedirect
<outputfile>");
           System.exit(1);
       }

       try
       {
           FileOutputStream fos = new FileOutputStream(args[0]);
           Runtime rt = Runtime.getRuntime();
           Process proc = rt.exec("java jecho 'Hello World'");
           // any error message?
           StreamGobbler errorGobbler = new
               StreamGobbler(proc.getErrorStream(), "ERROR");

           // any output?
           StreamGobbler outputGobbler = new
               StreamGobbler(proc.getInputStream(), "OUTPUT", fos);

           // kick them off
           errorGobbler.start();
           outputGobbler.start();

           // any error???
           int exitVal = proc.waitFor();
           System.out.println("ExitValue: " + exitVal);
           fos.flush();
           fos.close();
       } catch (Throwable t)
         {
           t.printStackTrace();
         }
   }
}
Gordon Beaton - 22 Mar 2006 10:13 GMT
> i have made javaCode, program run perfectly but created file not
> having any data.

In that case I'd say your program doesn't run perfectly.

You closed the FileOutputStream, but really you should be closing the
PrintWriter instead when you've finished writing to it.

/gordon

Signature

[  do not email me copies of your followups  ]
g o r d o n + n e w s @  b a l d e r 1 3 . s e



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.