使用Ant作为顺手工具

source : http://unserializableone.blogspot.com/2009/01/using-ant-as-library.html

Ant has a lot of predefined tasks that could be a great help. You can use them directly from your java code. Here are some examples using Ant to download a file, unzip a package and exec some shell command.

You would need to have
+ ant-1.7.1.jar
+ ant-launcher-1.7.1.jar
+ commons-io-1.3.2.jar (for exec example, found at http://commons.apache.org/io)

in your classpath.

  1. publicclassAntDemo{
  2. /**
  3. *DownloadafileatsourceUrltodest
  4. *
  5. */
  6. publicstaticvoiddownload(URLsourceUrl,Filedest){
  7. ProjectdummyProject=newProject();
  8. dummyProject.init();
  9. GetantGet=newGet();
  10. antGet.setProject(dummyProject);
  11. antGet.setVerbose(true);
  12. antGet.setSrc(sourceUrl);
  13. antGet.setDest(dest);
  14. antGet.execute();
  15. }
  16. /**
  17. *Unzipazipfile
  18. *
  19. */
  20. publicstaticvoidunzip(Filesrc,Filedest){
  21. ProjectdummyProject=newProject();
  22. dummyProject.init();
  23. ExpandantUnzip=newExpand();
  24. antUnzip.setProject(dummyProject);
  25. antUnzip.setSrc(src);
  26. antUnzip.setDest(dest);
  27. antUnzip.execute();
  28. /*antdoesn'tpreservepermissionbits
  29. needtorestorethemmanually*/
  30. Chmodchmod=newChmod();
  31. chmod.setProject(dummyProject);
  32. chmod.setDir(newFile(src.getAbsolutePath().replaceAll(".zip","")));
  33. chmod.setPerm("a+rx");
  34. chmod.setIncludes("**/**");
  35. chmod.execute();
  36. }
  37. /**
  38. *RunashellcommandandreturntheoutputasString
  39. *
  40. */
  41. publicstaticStringexec(Stringcommand,List<STRING>params,FileworkDir){
  42. FileoutputFile;
  43. try{
  44. outputFile=File.createTempFile("exec",".out");
  45. }catch(IOExceptione){
  46. thrownewRuntimeException(e);
  47. }
  48. ProjectdummyProject=newProject();
  49. dummyProject.init();
  50. ExecTaskexecTask=newExecTask();
  51. execTask.setProject(dummyProject);
  52. execTask.setOutput(outputFile);
  53. execTask.setDir(workDir!=null?workDir:newFile(System
  54. .getProperty("user.dir")));
  55. execTask.setExecutable(command);
  56. if(params!=null){
  57. for(Stringparam:params){
  58. execTask.createArg().setValue(param);
  59. }
  60. }
  61. execTask.execute();
  62. FileReaderreader=null;
  63. try{
  64. reader=newFileReader(outputFile);
  65. returnIOUtils.toString(reader);
  66. }catch(Exceptione){
  67. thrownewRuntimeException(e);
  68. }finally{
  69. IOUtils.closeQuietly(reader);
  70. outputFile.delete();
  71. }
  72. }
  73. publicstaticvoidmain(String[]args){
  74. List<STRING>params=Arrays.asList(newString[]{"Hello","World"});
  75. System.out.println(exec("echo",params,null));
  76. }
  77. }



Just note that you'll need a dummy project for the Ant task. Otherwise you'll get an NullPointerException.

There are a lot of tasks that you could use. The list is here http://ant.apache.org/manual/tasksoverview.html

你可能感兴趣的:(apache,html,ant)