Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我需要编写一个 Java 应用程序并且这个应用程序需要执行一些任务,并且我有一个 Python 类通过它的函数/方法来执行这些任务。
我想在我的 Java 应用程序中使用这个 Python 类方法/函数,可以吗?请注意,我说的是读取输出。
谢谢 :)
是的,您可以使用Jython。
Jython 程序可以导入和使用任何 Java 类。除了一些标准模块,Jython 程序使用 Java 类而不是 Python 模块。
和整合