问题
I am trying to use the javah task in an ant build file in Eclipse and I keep getting the following error:
BUILD FAILED
C:\sandbox\build-jni.xml:7: Can't load javah
Here is my build-jni.xml file:
<project>
<property name="bin" location="bin" />
<target name="generate-jni">
<javah destdir="${bin}" classpath="${bin}">
<class name="org.example.ExecJNI" />
</javah>
</target>
Any thoughts as to why I'm getting that error? My project is pointing to the JDK and not the JRE
回答1:
Turned out I didn't have C:\Program Files\Java\jdk1.7.0_15\tools.jar in my Ant Home Entries in Window --> Preferences. That seemed to fix the problem.
来源:https://stackoverflow.com/questions/15032230/cant-load-javah-error-in-eclipse