Jython 如何使用独立 JAR?

发布于 2025-01-14 15:27:43 字数 1062 浏览 1 评论 0原文

我正在尝试使用 Jython PythonInterpreter 类,但有点困难。

由于物理限制,我的场景缺乏任何类型的项目结构。我只有一个 Jython JAR 文件和一个 Java 文件。

我目前正在编译我的 Java 代码,如下所示:

javac -cp "jython-standalone-2.7.0.jar" test.java

此命令不会失败。

当我尝试运行已编译的 Java 时,出现此错误:

Exception in thread "main" java.lang.NoClassDefFoundError: org/python/util/PythonInterpreter
        at test.main(test.java:9)
Caused by: java.lang.ClassNotFoundException: org.python.util.PythonInterpreter
        at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        ... 1 more

代码如下所示:

import org.python.util.PythonInterpreter;

class test {
    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
    }
}

代码非常简单。我应该以不同的方式导入 Jython 类吗?我这里的方法有可能起作用吗?

谢谢

I am trying to use the Jython PythonInterpreter class, but am struggling a bit.

Due to physical limitations, my scenario lacks any sort of project structure. I simply have a Jython JAR file and a Java file.

I am currently compiling my Java code like so:

javac -cp "jython-standalone-2.7.0.jar" test.java

This command does not fail.

When I try to run the compiled Java, I get this error:

Exception in thread "main" java.lang.NoClassDefFoundError: org/python/util/PythonInterpreter
        at test.main(test.java:9)
Caused by: java.lang.ClassNotFoundException: org.python.util.PythonInterpreter
        at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        ... 1 more

The code looks like so:

import org.python.util.PythonInterpreter;

class test {
    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
    }
}

The code is very simple. Should I be importing the Jython classes a different way? Does my method here have any chance of working?

Thanks

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

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

发布评论

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

评论(1

初懵 2025-01-21 15:27:43

你如何运行命令?
您还需要设置 CLASSPATH。

How do you run the command?
You will also need to set the CLASSPATH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文