I can find java
, javac
and javadoc
but there is no javah.exe
in my jdk\\bin
folder.
I tried to reinstall the JDK but it is still missing. How can I get it, why is it missing?
I found a similar question where the operating system was Linux but I can not find answers for Windows users.
My OS is Windows 10. The Java version is 10.0.1.
The tool
javah.exe
was removed in Java 10. The reason is simple, it is obsolete. From JEP 313: Remove the Native-header Generation Tool (javah):So you can just use
javac.exe
if you are on Java 8 or newer.