使用ProcessBuilder调用外部命令,并返回大量结…
2008-02-23 09:34:39来源:互联网 阅读 ()
在网上常见的用Java调用外部命令返回结果的方法是:
process =runtime.exec(cmd)
is = process.getInputStream();
isr=new InputStreamReader(is);
br =new BufferedReader(isr);
while( (line = br.readLine()) != null )
{
out.println(line);
out.flush();
}
这种方法在遇到像cvs checkout modules这样不能马上返回结果的命令来说是无效的,不仅得不到返回结果,进程也会终止。其原因是,process在没有来得及gegtInputStream是,调用了BufferedReader.readLine其返回结果是null,也就是说循环一开始就会停止。因此想要正常运行只能直接读取process.getInputStream(),如下:
import java.io.*;
/**
*
* @author tyrone
*
*/
public class CMDExecute
{
/**
* @param cmd
* @return
* @throws IOException
*/
public synchronized String run(String[] cmd,String workdirectory) throws IOException{
String line=null;
String result="";
try {
ProcessBuilder builder = new ProcessBuilder(cmd);
//set working directory
if (workdirectory!=null)
builder.directory(new File(workdirectory));
builder.redirectErrorStream(true);
Process process = builder.start();
InputStream in=process.getInputStream();
byte[] re=new byte[1024];
while (in.read(re)!= -1) {
System.out.println(new String(re));
result = result new String(re);
}
in.close();
} catch (Exception ex) {
ex.printStackTrace();
}
return result;
}
/**
* @param args=cvs log */
public static void main(String[] args){
String result=null;
CMDExecute cmdexe=new CMDExecute();
try {
result= cmdexe.run(args,"D:\\MyProject\\colimas\\axis_c");
System.out.println(result);
}catch ( IOException ex ){
ex.printStackTrace();
}
}
}
经过测试,本方法可以运行返回大量结果的应用程序。
上一篇: Digester in Tomcat
下一篇: Hibernate入门 刘正仁
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash