English 中文(简体)
Java 的 Reg Jython Python 折叠
原标题:Reg Jython Python wrap for Java

我被指派一项任务, 将一个 java 独立应用程序转换为 python 网络应用程序。 用 Python 语言重新编码整个模块需要花费很多时间和精力。 有人建议我快速包扎 Python 并取得代码工作( jython. org) ( Jython 是 JAVA 的 Python 包) 。 是否有人能指引我如何启动我, 因为我是Python 和 Jython 的新人?

问题回答

让你开始:

如果您熟悉 Java, 那么您应该能够找到 Jython, 不会引发任何问题。 请像其他任何 < code>. jar 一样执行它。 如果您没有下载独立 Jython. jar, 请务必将 Jython 库包括在您的类路径中 。

说您的 Java 应用程序套件名为 com.stackoverflow.q10715162 , 编译为 .jar , 编译为 C:jarsyour_app.jar

然后,你可以进入Jython的班级。

>>> import sys
>>> sys.path
[  ,  C:\jython\Lib ,  C:\jython\jython.jar\Lib ,  __classpath__ , 
 __pyclasspath__ ]

这里,sys.path 除其他外, 是一个目录列表, 您的 Jython 分布正在查找汇编模块。 通过将您汇编的 Java 应用程序添加到列表中, 此目录可以访问( 更深入的信息可在 < a href=" http://www.jython.org/ jythonbook/ en/ 1.0/ ModulesPackages. html" rel=“ no follow” > http://www.jython.org/jythonbook/en/ 1.0/ ModulesPackages.html < /a> 上查阅 :

>>> sys.path.append( C:\jars\your_app.jar )
>>> import com.stackoverflow.q10715162 as yourapp
*sys-package-mgr*: processing new jar,  C:\jars\your_app.jar 
>>> dir(yourapp)
[ Class1 ,  Class2 ,  Class3 , ...]

使用 dir( yourap) 您可以看到 Java 应用程序中定义的类别 。 dir (yourapp.Class1) 将列出该类中的所有方法、功能等 。

你可能想读读前几页,至少读读Jython 书中的几页,以熟悉新的语法。我发现这比 Java s 简单得多。

制作 Jython 网络应用程序时, 我听说 < code> cgi 是启动最低管理费的捷径方式 :

#!/usr/bin/python

print("Content-Type: text/plain

")

print("Hello, World!
")

这个教程似乎很有帮助:http://www.cs.virginia.edu/~lab2q/lesson_1/ 。虽然对Python来说,几乎所有的教程都应该适用于Jython。

当然,如果 cgi 不适合您或您的工程,则有许多其他的 Python/Jython 网络服务选项。 我曾经使用过web2py 并且非常喜欢它。





相关问题
Data extraction and manipulation in jython

For a given file For ex : 11 ,345 , sdfsfsfs , 1232 i need to such above records from a file , read 11 to delimiter and strip the white space and store in the another file , similarly 345 to ...

Replace Multiple lines in Jython

I have written a small program to replace a set of characters , but i also want two or more replace command in a single program . Apart from it i also want to add an bracket after random set of ...

How to kill main thread from sub thread in Jython

I have a script that creates a thread which after 60 seconds (this thread) needs to kill the main thread. I`m not sure what command I can use to kill the main thread. I m using Jython 2.5.1 and Thread....

Using Jython From Eclipse Plugin

I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. All of this works ...

Jython 2.1 __getattr__

I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered: if __client != None ...

How can I add jars dynamically to jython, inside script?

I am writing a package in python that talks to an ldap server. I want it to work in CPython and Jython. To get it to work with CPython, I have successfully coded against python-ldap. However, to get ...

Jython exception handling within loops

I am using Marathon 2.0b4 to automate tests for an application. A shortcoming of wait_p, one of the script elements provided by Marathon, is that its default timeout is hardcoded to be 60 seconds. I ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

热门标签