服务器之家

服务器之家 > 正文

java引用jpython的方法示例

时间:2020-06-30 11:27     来源/作者:yczz

本文实例讲述了java引用jpython的方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import java.util.ArrayList;
import java.util.List;
import org.python.core.PyException;
import org.python.core.PyInteger;
import org.python.core.PyObject;
import org.python.util.PythonInterpreter;
public class python {
  public static void main(String []args)throws PyException
  {
    PythonInterpreter interp =new PythonInterpreter();
    System.out.println("Hello, brave new world");
    interp.exec("import sys");
    interp.exec("print sys");
    interp.set("a", new PyInteger(42));
    interp.exec("print 'test='+str(a)");
    interp.exec("x = 2+2");
    PyObject x = interp.get("x");
    System.out.println("x: "+x);
    System.out.println("Goodbye, cruel world");
    interp.exec("import re");
    //interp.exec("print dir(re)");
    interp.exec("t =re.compile('^(0{2}):(IFCSUM):(MANIFEST):')");
    interp.exec(" a = t.search('00:IFCSUM:MANIFEST:').groups()");
    PyObject k = interp.get("a");
    List list = ((List)k.__tojava__(List.class));
    // int ai= ((Integer)a.__tojava__(Integer.class)).intValue();
    System.out.println(k);
    System.out.println(list);
  }
}

希望本文所述对大家java程序设计有所帮助。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
返回顶部