2006年06月09日 星期五 00:55
请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060609/c0f1ed1e/attachment.html
2006年06月09日 星期五 09:34
可以,Jython的代码可以编译成class文件(其实我反编译过,还是把脚本字符串传给解释器)。 在06-6-9,Peng Xu <gulama at gmail.com> 写道: > > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060609/1c43a612/attachment.htm
2006年06月09日 星期五 11:36
可以,jython编译后就与PYTHON没关系了,完全是JAVA字节码 On 6/9/06, Peng Xu <gulama at gmail.com> wrote: > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > -- I am thinking!
2006年06月09日 星期五 15:20
还是有的,我反编译过,class里就是把Jython源码一句一句的传到Jython解释器执行,所以Jython的打包模式有一种是把Jython的解释器一并打进去。 2006/6/9, Batfree <batfreelist at gmail.com>: > > 可以,jython编译后就与PYTHON没关系了,完全是JAVA字节码 > > On 6/9/06, Peng Xu <gulama at gmail.com> wrote: > > > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > > > > > -- > I am thinking! > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060609/ee113999/attachment.htm
2006年06月13日 星期二 17:31
感谢 2位前辈的指点,还有个问题就是必须把jpython编译成class后才能被java调用吗?有方法让java程序能直接调用执行jpython的脚本文件吗? 在06-6-9,刘鑫 <march.liu at gmail.com> 写道: > > > 还是有的,我反编译过,class里就是把Jython源码一句一句的传到Jython解释器执行,所以Jython的打包模式有一种是把Jython的解释器一并打进去。 > > 2006/6/9, Batfree <batfreelist at gmail.com>: > > > > 可以,jython编译后就与PYTHON没关系了,完全是JAVA字节码 > > On 6/9/06, Peng Xu <gulama at gmail.com> wrote: > > > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > > > > > > -- > I am thinking! > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > -- > 欢迎访问: > http://blog.csdn.net/ccat > > 刘鑫 > March.Liu > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060613/50363089/attachment-0001.htm
2006年06月13日 星期二 23:57
http://www.jython.org/Project/userguide.html#embedding-jython On 6/13/06, Peng Xu <gulama at gmail.com> wrote: > > 感谢 > 2位前辈的指点,还有个问题就是必须把jpython编译成class后才能被java调用吗?有方法让java程序能直接调用执行jpython的脚本文件吗? > > 在06-6-9,刘鑫 <march.liu at gmail.com> 写道: > > > > > 还是有的,我反编译过,class里就是把Jython源码一句一句的传到Jython解释器执行,所以Jython的打包模式有一种是把Jython的解释器一并打进去。 > > > > 2006/6/9, Batfree <batfreelist at gmail.com>: > > > > > > 可以,jython编译后就与PYTHON没关系了,完全是JAVA字节码 > > > > On 6/9/06, Peng Xu <gulama at gmail.com > wrote: > > > > > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > > > > > > > > > > > -- > > I am thinking! > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > > 欢迎访问: > > http://blog.csdn.net/ccat > > > > 刘鑫 > > March.Liu > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060613/d12c6075/attachment.html
2006年06月16日 星期五 16:05
感谢 swordsp提供的地址。 在06-6-13,swordsp <sparas2006 at gmail.com> 写道: > > http://www.jython.org/Project/userguide.html#embedding-jython > > > On 6/13/06, Peng Xu <gulama at gmail.com> wrote: > > > > 感谢 > > 2位前辈的指点,还有个问题就是必须把jpython编译成class后才能被java调用吗?有方法让java程序能直接调用执行jpython的脚本文件吗? > > > > > > 在06-6-9,刘鑫 <march.liu at gmail.com> 写道: > > > > > > > > 还是有的,我反编译过,class里就是把Jython源码一句一句的传到Jython解释器执行,所以Jython的打包模式有一种是把Jython的解释器一并打进去。 > > > > > > 2006/6/9, Batfree <batfreelist at gmail.com>: > > > > > > > > 可以,jython编译后就与PYTHON没关系了,完全是JAVA字节码 > > > > > > On 6/9/06, Peng Xu <gulama at gmail.com > wrote: > > > > > > > 请教各位高手,过去我用C++写过一个项目是用python作为业务逻辑脚本,在C++程序里调用.py脚本作业务逻辑处理。目前在用java作开发,不过也想用jython作业务逻辑处理,由java来调用,因为原来没有使用过jython不知道这种方式是否可行。在此希望各位高手能给与指点。 > > > > > > > > > > > > > > > > -- > > > I am thinking! > > > > > > _______________________________________________ > > > python-chinese > > > Post: send python-chinese at lists.python.cn > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > -- > > > 欢迎访问: > > > http://blog.csdn.net/ccat > > > > > > 刘鑫 > > > March.Liu > > > > > > _______________________________________________ > > > python-chinese > > > Post: send python-chinese at lists.python.cn > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > Unsubscribe: send unsubscribe to > > > python-chinese-request at lists.python.cn > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060616/e61062fd/attachment.htm
Zeuux © 2025
京ICP备05028076号