I am trying to create a header file using javah tool from command line on windows 7 OS but i am failing all the time.
I have followed different ways and even read t
Suppose your class file is in D:/A folder cd your command prompt to folder A and run below command
D:/A>javah -classpath . classfilename
Here . will set the classpath to current directory and javah tool should be able to find your class file.
.