执行ANT JAVA三种方式

1、 命令行

<target name="reporttoexcel" depends="report">

<exec executable="cmd" failonerror="true">

<arg value = "/c"/>

<arg value = "java"/>

<arg value = "-jar"/>

<arg value = "converttoexcel.jar"/>

<arg value = "${languagename.reportxml.dir}"/>

</exec>

</target>

2、 主类

<target name="main">

<java classname="com.test.distribute.Distribute" classpathref="lib_classpath">

<arg value="123"/>

</java>

</target>

3、 执行JAR包

<java jar="dist/test.jar" fork="true" failonerror="true" maxmemory="128m"  >

<arg value="arg1"/>

<arg value="arg2"/>

<arg value="arg3"/>

<classpath>

<pathelement location="dist/test.jar"/>

</classpath>

</java>

上一篇:HTML 事件(三) 事件流与事件委托


下一篇:apache kylin2.10在原生hadoop集群上安装