0

我是 Android 新手。我使用此链接运行 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.

请帮我。提前致谢。

4

1 回答 1

0

在项目的目录中运行时,您需要使用-classpath PATH选项指定类路径:javahbin

$ javah -classpath classes/ com.hello.LibC

您也可以使用选项指定输出目录-d PATH

$ javah -d ../jni -classpath classes/ com.hello.LibC
于 2014-02-03T04:09:57.003 回答