本站首页    管理页面    写新日志    退出


«September 2025»
123456
78910111213
14151617181920
21222324252627
282930


公告
 本博客在此声明所有文章均为转摘,只做资料收集使用。

我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:
日志总数:1304
评论数量:2242
留言数量:5
访问次数:7617286
建立时间:2006年5月29日




[J2SE]执行的Runtime类调用程序停掉的原因
软件技术,  电脑与网络

lhwork 发表于 2006/6/12 14:56:38

牛牛发现问题的原因,Process  process=Runtime.getRuntime().exec("");中产生停滞(阻塞,blocking)。 这个是因为Runtime.getRuntime().exec()要自己去处理stdout和stderr的。  所以如果你想让程序正常运行的话,请务必将上述用别的线程流取走。   >test.bat  haha  exit  99   >RuntimeTest.java  public  class  RuntimeTest  {              public  static  void  main(String[]  args)  {                         try  {                                     Process  process=Runtime.getRuntime().exec("test.bat");                                     StreamGobbler  errorGobbler  =  new  StreamGobbler(process.getErrorStream(),  "ERROR");                                                                      //  kick  off  stderr                             errorGobbler.start();                                                          StreamGobbler  outGobbler  =  new  StreamGobbler(process.getInputStream(),  "STDOUT");                             //  kick  off  stdout                             outGobbler.start();                                                                  process.waitFor();                                     System.out.println(process.exitValue());                         }  catch(Exception  e)  {}                         }  }    >StreamGobbler.java  import  java.io.BufferedReader;  import  java.io.IOException;  import  java.io.InputStream;  import  java.io.InputStreamReader;  import  java.io.OutputStream;  import  java.io.PrintWriter;   public  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();                     }         }  }自己mark一下


阅读全文(1774) | 回复(0) | 编辑 | 精华
 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.047 second(s), page refreshed 144799030 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号