我需要在构建时使用我的一个java类中的方法,就像你可以在这样做:
<target name="getString" >
<property file="project.properties" /> <!-- Load the ${target} platform property -->
<script language="javascript" classpath="../ProjectName/bin/randomJar.jar:../otherProject/binrandomClass.jar:../otherProject2/bin/randomJar2.jar:/fff/adt-bundle-linux-x86_64/sdk/platforms/${target}/android.jar">
<![CDATA[
importClass(com.example.sdk.ExampleClass);
returnString = ExampleClass.thisIsTheMethod(null);
project.setProperty("blah", returnString);
]]>
</script>
</target>
我不想在其他答案中运行像iv这样的Main方法,只需要一个静态方法并获取返回字符串。
谢谢你。