在java中调用python方法

1、http://sourceforge.net/projects/jython/下载jython包,把其中的jython.jar添加到工程目录

 

示例:

1、摘自:http://blog.csdn.net/anbo724/article/details/6608632

1.在java类中直接执行python语句

 
  1. import javax.script.*;  
  2.   
  3. import org.python.util.PythonInterpreter;  
  4.   
  5. import java.io.*;  
  6. import static java.lang.System.*;  
  7. public class FirstJavaScript  
  8. {  
  9.  public static void main(String args[])  
  10.  {  
  11.     
  12.   PythonInterpreter interpreter = new PythonInterpreter();  
  13.   interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); ");  
  14.   interpreter.exec("print days[1];");  
  15.     
  16.     
  17.  }//main  
  18. }  


这样得到的结果是Tue,在控制台显示出来,这是直接进行调用的。

2.在java中调用本机python脚本中的函数:

   首先建立一个python脚本,名字为:my_utils.py

 
  1. def adder(a, b):  
  2.     return a + b  

然后建立一个java类,用来测试,

java类代码 FirstJavaScript:

 
  1. import javax.script.*;  
  2.   
  3. import org.python.core.PyFunction;  
  4. import org.python.core.PyInteger;  
  5. import org.python.core.PyObject;  
  6. import org.python.util.PythonInterpreter;  
  7.   
  8. import java.io.*;  
  9. import static java.lang.System.*;  
  10. public class FirstJavaScript  
  11. {  
  12.     public static void main(String args[])  
  13.     {  
  14.           
  15.         PythonInterpreter interpreter = new PythonInterpreter();  
  16.         interpreter.execfile("C:\\Python27\\programs\\my_utils.py");  
  17.         PyFunction func = (PyFunction)interpreter.get("adder",PyFunction.class);  
  18.   
  19.         int a = 2010, b = 2 ;  
  20.         PyObject pyobj = func.__call__(new PyInteger(a), new PyInteger(b));  
  21.         System.out.println("anwser = " + pyobj.toString());  
  22.   
  23.   
  24.     }//main  
  25. }  

得到的结果是:anwser = 2012

3.使用java直接执行python脚本,

建立脚本inputpy

 
  1. #open files  
  2.   
  3. print 'hello'  
  4. number=[3,5,2,0,6]  
  5. print number  
  6. number.sort()  
  7. print number  
  8. number.append(0)  
  9. print number  
  10. print number.count(0)  
  11. print number.index(5)  


建立java类,调用这个脚本:

 
  1. import javax.script.*;  
  2.   
  3. import org.python.core.PyFunction;  
  4. import org.python.core.PyInteger;  
  5. import org.python.core.PyObject;  
  6. import org.python.util.PythonInterpreter;  
  7.   
  8. import java.io.*;  
  9. import static java.lang.System.*;  
  10. public class FirstJavaScript  
  11. {  
  12.  public static void main(String args[])  
  13.  {  
  14.     
  15.   PythonInterpreter interpreter = new PythonInterpreter();  
  16.   interpreter.execfile("C:\\Python27\\programs\\input.py");  
  17.  }//main  
  18. }  


得到的结果是:

 
  1. hello  
  2. [3, 5, 2, 0, 6]  
  3. [0, 2, 3, 5, 6]  
  4. [0, 2, 3, 5, 6, 0]  
  5. 2  
  6. 3  


转载于:https://www.cnblogs.com/u0mo5/p/4032452.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值