标签:.exe put sub add dog details and tail 方法
之前使用Runtime.getRuntime().exec调用外部程序。在Tomcat下会有当前线程一直等待的现象。
当时为了解决问题,使用新建线程接收外部程序的输出信息。详情请看博客http://blog.csdn.net/accountwcx/article/details/46785437。
后来在网上找到开源的Java调用外部程序类库Apache Commons Exce,这个类库提供非堵塞方法调用外部程序。
官方网址
http://commons.apache.org/proper/commons-exec/
maven地址
http://mvnrepository.com/artifact/org.apache.commons/commons-exec/1.3
官方教程 http://commons.apache.org/proper/commons-exec/tutorial.html 官方教程提供的非堵塞方法在1.3版中不适用
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);
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);
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);
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();
博客http://blog.csdn.net/accountwcx/article/details/46785437的HtmlToPdf类能够改成例如以下。
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在系统中的Java运行外部程序(Apache Commons Exec)
标签:.exe put sub add dog details and tail 方法
原文地址:http://www.cnblogs.com/ljbguanli/p/7244648.html