jython学习笔记(一)-----Java调用python

1 什么是jython? 

他其实是一门语言,并非是java 或者python的解释器.用它可以实现,java和python代码的互相访问。


2 简单的例子

java中执行python 语句

        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); ");
        interpreter.exec("print days;");

java调用python的脚本: 

 PythonInterpreter interpreter = new PythonInterpreter();  
  interpreter.execfile("script.py");  

java调用python类当中的函数

先在python文件中定一个python函数

def pluser(a,b):
    # print "the result of pluser is %d" % (a+b)
    return a+b

在java当中去调用:

PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.execfile("F:\\machine learning\\machinelearninginaction\\Ch02\\test.py");
        PyFunction function = (PyFunction)interpreter.get("pluser",PyFunction.class);
        PyObject o = function.__call__(new PyInteger(8),new PyInteger(23));


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值