javah 帮助 - “命令行上未指定类”

发布于 2024-10-02 18:55:29 字数 334 浏览 2 评论 0 原文

我正在运行安装了 Eclipse 的 Ubuntu Linux,并且我正在尝试使用 JNI 为此,我需要使用 javah,但它似乎不起作用 我最近刚刚安装了 Ubuntu,并且不熟悉

名为 myJNI 的 eclipse 项目的 Linux/bash shell,我有包含本机方法的 DoJNI 类。

在终端中:

javah -classpath .;\home\thomas\Documents\LinuxProgramming\EclipseWorkspace\myJNI\bin\org\me\jni DoJNI

我得到的错误是: 命令行上未指定类

I'm running Ubuntu Linux with Eclipse installed, and I'm trying to work with JNI
to do so I need to use javah, but it doesn't seem to be working
I have just recently installed Ubuntu and am unfamiliar with Linux/bash shells

for my eclipse project called myJNI, I have class DoJNI containing the native method.

in Terminal:

javah -classpath .;\home\thomas\Documents\LinuxProgramming\EclipseWorkspace\myJNI\bin\org\me\jni DoJNI

errors I get are:
No classes were specified on the command line

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声无音无过去 2024-10-09 18:55:29

使用正斜杠而不是反斜杠,并使用冒号而不是分号:

javah -classpath .:/home/thomas/Documents/LinuxProgramming/EclipseWorkspace/myJNI/bin/org/me/jni DoJNI

另外,我怀疑您实际上并不希望类路径上有 org/me/jni,而只是 bin 目录,使用类名 org.me.jni.DoJNI:

javah -classpath .:/home/thomas/Documents/LinuxProgramming/EclipseWorkspace/myJNI/bin org.me.jni.DoJNI

Use forward slashes instead of backslashes, and a colon instead of a semi-colon:

javah -classpath .:/home/thomas/Documents/LinuxProgramming/EclipseWorkspace/myJNI/bin/org/me/jni DoJNI

Also, I suspect that you don't really want org/me/jni on the classpath, but just the bin directory, using the classname org.me.jni.DoJNI:

javah -classpath .:/home/thomas/Documents/LinuxProgramming/EclipseWorkspace/myJNI/bin org.me.jni.DoJNI
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文