您的位置:首页 > 编程语言 > Python开发

Python_Java调用Jython

2012-05-07 11:44 405 查看
Java调用jython 

准备: 

1. sun-jre1.6, jython 2.5 

2. 在官网下下个jython_installer-2.5.0.jar,一路next, 在 /jython-install-path/里有个jython.jar, 把这个jython.jar import 进Java Project 里边。 

python代码: fibo.py 

# Fibonacci numbers module 

def fib(n):    # write Fibonacci series up to n 

    a, b = 0, 1 

    while b < n: 

        print b, 

        a, b = b, a+b 

def fib2(n): # return Fibonacci series up to n 

    result = [] 

    a, b = 0, 1 

    while b < n: 

        result.append(b) 

        a, b = b, a+b 

    return result 

import org.python.core.PyException; 

import org.python.core.PyFile; 

import org.python.core.PyObject; 

import org.python.core.PyString; 

import org.python.util.PythonInterpreter; 

public class TestJython { 

    

    /** 

     * 关注Jython这几个方面的内容: 

     * 1. 怎样从某个指定的路径import一个Jython模块? 

     * 2. 怎样调用模块里的方法? 

     * 3. java 与 jython 间的参数应该怎样进行传递? 

     * 

     * @param args 

     * @throws PyException 

     */ 

    public static void main(String []args)throws PyException 

    { 

        PythonInterpreter interp = new PythonInterpreter(); 

        

        // 1. 

        // 引入系统模块,并将[./pythonsrc]加入模块搜索路径中去。 

        interp.exec("import sys"); 

        interp.exec("sys.path.append('./pythonsrc')"); 

        

        // 2. 引入 fibo, 执行fibo.fib(100), ok 

        interp.exec("import fibo"); 

        interp.exec("fibo.fib(100)"); 

    

        // 3. 在Java 程序中获得 python内置类型的变量值。 

        String text = "'this is a bad day'"; 

        interp.exec("x = " + text + " + '!!!'"); 

        interp.exec("print x"); 

        PyObject object = interp.get("x"); 

        PyString xString = object.__str__(); 

        String outX = xString.asString(); 

        

        interp.exec("_file = open('/home/fore/work/OaasSearch/search/oaas_search/workspace/oaas-search0.1/pythonsrc/fibo.py')"); 

        object = interp.get("_file"); 

        PyFile file = (PyFile)object; 

        PyString content = file.read(100); 

        System.out.println(content); 

        

        interp.exec("array = _file.read(100)"); 

        String array = interp.get("array").asString(); 

        System.out.println(array); 

        

        interp.exec("_file.close()"); 

        file.close(); 

    } 

}

按照以上步骤,我的实现如下:

1.通过Java Project 的import 导入安装在C盘安装路径下的jython.jar

2. 建立一个包com.java.jython,创建类javaJython.java,创建python文件fibo.py

3. 源代码修改如下:

fibo.py

# Fibonacci numbers module 

def fib(n):    # write Fibonacci series up to n 

    a, b = 0, 1 

    while b < n: 

        print b, 

        a, b = b, a+b 

def fib2(n): # return Fibonacci series up to n 

    result = [] 

    a, b = 0, 1 

    while b < n: 

        result.append(b) 

        a, b = b, a+b 

    return result 

javaJython.java源代码:

package com.java.jython;

import org.python.core.PyException;

import org.python.core.PyFile;

import org.python.core.PyObject;

import org.python.core.PyString;

import org.python.util.PythonInterpreter;

public class javaJython { 

    

    /** 

     * 关注Jython这几个方面的内容: 

     * 1. 怎样从某个指定的路径import一个Jython模块? 

     * 2. 怎样调用模块里的方法? 

     * 3. java 与 jython 间的参数应该怎样进行传递? 

     * 

     * @param args 

     * @throws PyException 

     */ 

    public static void main(String []args)throws PyException 

    { 

        PythonInterpreter interp = new PythonInterpreter(); 

        

        // 1. 

        // 引入系统模块,并将[./com/java/jython]加入模块搜索路径中去。 

        interp.exec("import sys"); 

        interp.exec("sys.path.append('E:/workspace/androidwork/JavaJython/src/com/java/jython')"); 

        

        // 2. 引入 fibo, 执行fibo.fib(100), ok 

        interp.exec("import fibo"); 

        interp.exec("fibo.fib(100)"); 

    

        // 3. 在Java 程序中获得 python内置类型的变量值。 

        String text = "'this is a bad day'"; 

        interp.exec("x = " + text + " + '!!!'"); 

        interp.exec("print x"); 

        PyObject object = interp.get("x"); 

        PyString xString = object.__str__(); 

        String outX = xString.asString(); 

        

        interp.exec("_file = open('E:/workspace/androidwork/JavaJython/src/com/java/jython/fibo.py')"); 

        object = interp.get("_file"); 

        PyFile file = (PyFile)object; 

        PyString content = file.read(100); 

        System.out.println(content); 

        

        interp.exec("array = _file.read(100)"); 

        String array = interp.get("array").asString(); 

        System.out.println(array); 

        

        interp.exec("_file.close()"); 

        file.close(); 

    } 

}

4.运行结果如下:

1 1 2 3 5 8 13 21 34 55 89

this is a bad day!!!

# Fibonacci numbers module 

import sys

print sys.path

def fib(n):    # write Fibonacci series up to 



    a, b = 0, 1 

    while b < n: 

        print b, 

        a, b = b, a+b 

def fib2(n): # retur
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息