Java执行外部程序(Apache Commons Exec)

之前使用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"。

[java]  view plain  copy
  1. String line = "AcroRd32.exe /p /h c:\help.pdf";  
  2. CommandLine cmdLine = CommandLine.parse(line);  
  3. DefaultExecutor executor = new DefaultExecutor();  
  4.   
  5. //设置命令执行退出值为1,如果命令成功执行并且没有错误,则返回1  
  6. executor.setExitValue(1);  
  7.   
  8. int exitValue = executor.execute(cmdLine);  

Commons Exec支持通过添加参数方式构建命令,执行命令"AcroRd32.exe /p /h c:\help.pdf"也可以按如下方法创建。

[java]  view plain  copy
  1. CommandLine cmdLine = new CommandLine("AcroRd32.exe");  
  2. cmdLine.addArgument("/p");  
  3. cmdLine.addArgument("/h");  
  4.   
  5. Map map = new HashMap();  
  6. map.put("file"new File("c:\help.pdf"));  
  7. cmdLine.addArgument("${file}");  
  8. cmdLine.setSubstitutionMap(map);  
  9.   
  10. DefaultExecutor executor = new DefaultExecutor();  
  11. executor.setExitValue(1);  
  12. int exitValue = executor.execute(cmdLine);  

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

[java]  view plain  copy
  1. CommandLine cmdLine = new CommandLine("AcroRd32.exe");  
  2. cmdLine.addArgument("/p");  
  3. cmdLine.addArgument("/h");  
  4.   
  5. Map map = new HashMap();  
  6. map.put("file"new File("c:\help.pdf"));  
  7. cmdLine.addArgument("${file}");  
  8. cmdLine.setSubstitutionMap(map);  
  9.   
  10. DefaultExecutor executor = new DefaultExecutor();  
  11.   
  12. //创建监控时间60秒,超过60秒则中端执行  
  13. ExecuteWatchdog watchdog = new ExecuteWatchdog(60*1000);  
  14. executor.setWatchdog(watchdog);  
  15.   
  16. executor.setExitValue(1);  
  17. int exitValue = executor.execute(cmdLine);  

上面的执行外部命令都是阻塞式,也就是在执行外部命令时,当前线程是阻塞的。如果不想在执行外部命令的时候,把当前线程阻塞,可以使用DefaultExecuteResultHandler处理外部命令执行的结果,释放当前线程。

[java]  view plain  copy
  1. CommandLine cmdLine = new CommandLine("AcroRd32.exe");  
  2. cmdLine.addArgument("/p");  
  3. cmdLine.addArgument("/h");  
  4.   
  5. Map map = new HashMap();  
  6. map.put("file"new File("c:\help.pdf"));  
  7. cmdLine.addArgument("${file}");  
  8. cmdLine.setSubstitutionMap(map);  
  9.   
  10. DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();  
  11. DefaultExecutor executor = new DefaultExecutor();  
  12. executor.setExitValue(1);  
  13. executor.execute(cmdLine, resultHandler);  
  14. resultHandler.waitFor();  


博客http://blog.csdn.net/accountwcx/article/details/46785437的HtmlToPdf类可以改成如下。

[java]  view plain  copy
  1. import java.io.File;  
  2.   
  3. import org.apache.commons.exec.CommandLine;  
  4. import org.apache.commons.exec.DefaultExecuteResultHandler;  
  5. import org.apache.commons.exec.DefaultExecutor;  
  6.   
  7. public class HtmlToPdf {  
  8.     //wkhtmltopdf在系统中的路径  
  9.     private static final String toPdfTool = "c:\\wkhtmltopdf.exe";  
  10.       
  11.     /** 
  12.      * @param srcPath html路径,可以本地硬盘路径或者url 
  13.      * @param destPath pdf保存路径 
  14.      * @return 转换成功返回true 
  15.      */  
  16.     public static boolean convert(String srcPath, String destPath){       
  17.         File file = new File(destPath);  
  18.         File parent = file.getParentFile();  
  19.         //如果pdf保存路径不存在,则创建路径  
  20.         if(!parent.exists()){  
  21.             parent.mkdirs();  
  22.         }  
  23.           
  24.         CommandLine cmdLine = new CommandLine(toPdfTool);  
  25.         cmdLine.addArgument(srcPath, true);  
  26.         cmdLine.addArgument(destPath, true);  
  27.           
  28.         DefaultExecutor executor = new DefaultExecutor();  
  29.           
  30.         //设置执行命令成功的退出值为1  
  31.         executor.setExitValue(1);  
  32.           
  33.         //非阻塞  
  34.         DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();  
  35.           
  36.         boolean result = true;  
  37.         try {  
  38.             executor.execute(cmdLine, resultHandler);  
  39.             resultHandler.waitFor();  
  40.         } catch (Exception e) {  
  41.             result = false;  
  42.             e.printStackTrace();  
  43.         }  
  44.           
  45.         return result;  
  46.     }  
  47. }  

你可能感兴趣的:(java_gui,java和com组件,jsp,tomcat)