apache 运行 java_Java运行外部程序(Apache Commons Exec)

之前使用Runtime.getRuntime().exec调用外部程序。在Tomcat下会有当前线程一直等待的现象。

后来在网上找到开源的Java调用外部程序类库Apache Commons Exce,这个类库提供非堵塞方法调用外部程序。

Commons Exec对调用外部程序进行了封装,仅仅须要少量代码就可以实现外部程序调用。如运行命令"AcroRd32.exe /p /h c:\help.pdf"。

String line = "AcroRd32.exe /p /h c:\help.pdf";

CommandLine cmdLine = CommandLine.parse(line);

DefaultExecutor executor = new DefaultExecutor();

//设置命令运行退出值为1,假设命令成功运行而且没有错误,则返回1

executor.setExitValue(1);

int exitValue = executor.execute(cmdLine);

Commons Exec支持通过加入參数方式构建命令。运行命令"AcroRd32.exe /p /h c:\help.pdf"也能够按例如以下方法创建。

CommandLine cmdLine = new CommandLine("AcroRd32.exe");

cmdLine.addArgument("/p");

cmdLine.addArgument("/h");

Map map = new HashMap();

map.put("file", new File("c:\help.pdf"));

cmdLine.addArgument("${file}");

cmdLine.setSubstitutionMap(map);

DefaultExecutor executor = new DefaultExecutor();

executor.setExitValue(1);

int exitValue = executor.execute(cmdLine);

Commons Exec支持设置外部命令运行等待时间,假设超过等等时间则中断运行。

CommandLine cmdLine = new CommandLine("AcroRd32.exe");

cmdLine.addArgument("/p");

cmdLine.addArgument("/h");

Map map = new HashMap();

map.put("file", new File("c:\help.pdf"));

cmdLine.addArgument("${file}");

cmdLine.setSubstitutionMap(map);

DefaultExecutor executor = new DefaultExecutor();

//创建监控时间60秒,超过60秒则中端运行

ExecuteWatchdog watchdog = new ExecuteWatchdog(60*1000);

executor.setWatchdog(watchdog);

executor.setExitValue(1);

int exitValue = executor.execute(cmdLine);

上面的运行外部命令都是堵塞式。也就是在运行外部命令时,当前线程是堵塞的。假设不想在运行外部命令的时候,把当前线程堵塞,能够使用DefaultExecuteResultHandler处理外部命令运行的结果。释放当前线程。

CommandLine cmdLine = new CommandLine("AcroRd32.exe");

cmdLine.addArgument("/p");

cmdLine.addArgument("/h");

Map map = new HashMap();

map.put("file", new File("c:\help.pdf"));

cmdLine.addArgument("${file}");

cmdLine.setSubstitutionMap(map);

DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();

DefaultExecutor executor = new DefaultExecutor();

executor.setExitValue(1);

executor.execute(cmdLine, resultHandler);

resultHandler.waitFor();

import java.io.File;

import org.apache.commons.exec.CommandLine;

import org.apache.commons.exec.DefaultExecuteResultHandler;

import org.apache.commons.exec.DefaultExecutor;

public class HtmlToPdf {

//wkhtmltopdf在系统中的

原文:http://www.cnblogs.com/ljbguanli/p/7244648.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值