“Can't load javah” error in Eclipse

2019-05-18 07:54发布

问题:

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.