我是Android新手。我使用此link来运行NDK项目。
我从给定的链接中执行了所有这些步骤。但是在编译命令提示符期间,它显示的错误如下:
$ javah com.hello.LibC
error: cannot access com.hello.LibC
class file for com.hello.LibC not found
javadoc: error - Class com.hello.LibC not found.
Error: No classes were specified on the command line. Try -help.
请帮帮我。 在此先感谢。
答案 0 :(得分:0)
在项目的-classpath PATH
目录中运行javah
时,需要使用bin
选项指定类路径:
$ javah -classpath classes/ com.hello.LibC
您也可以使用选项-d PATH
$ javah -d ../jni -classpath classes/ com.hello.LibC