Eclipse使用Ant 快速上手

系统 1492 0

 目前的Eclipse都集成了ant,本文图示如何在eclipse下使用ant。
    1.新建Java Project-新建Java文件HelloWorld.java
HelloWorld.java
package example;
public class HelloWorld {
    public static void main(String[] args) {
       System.out.println("Hello World");
    }
}

 
    2.在工程根目录下新建build.xml
build.xml
<?xml version="1.0" encoding="utf-8"?>
<project default="main" basedir=".">
    <target name="main" depends="compile, compress" description="Main target">
       <echo>Building the .jar file.</echo>
    </target>
    <target name="compile" description="Compilation target">
       <javac srcdir="${basedir}/src/example" />
    </target>
    <target name="compress" description="Compression target">
       <jar jarfile="HelloWorld.jar" basedir="${basedir}/src/example" includes="*.class" />
    </target>
</project>

    此脚本文件内容是编译/src/example下的java文件,并就地生成class文件,将这个class文件打成jar 包,HelloWorld.jar。
    此时工程的目录结构如下图所示:

    
    右键选中HelloAnt工程,选择Properties:

    

    选择Builders-New…,选择Ant Build,
Name:Ant_Builder;
Buildfile:${workspace_loc:/HelloAnt/build.xml};
Base Directory:${workspace_loc:/HelloAnt};
    (按“Browse Workspace”选择工程根目录)

    
    在Builder面板中钩上Ant_Build,去掉Java Builder,即可编译执行。
    每次编译时,右键build.xml,选择Run As-Ant Build:

    

   
    此示例工程编译结果:
Buildfile: D:\dev\Workspaces\J2EE\HelloAnt\build.xml
compile:
compress:
main:
     [echo] Building the .jar file.
BUILD SUCCESSFUL
Total time: 281 milliseconds

Eclipse使用Ant 快速上手


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论