码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse中使用jython

时间:2016-09-13 22:15:05      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:

通过maven配置加载这个包,目前比较稳定的是python2.7的,见

        <dependency>
              <groupId>org.python</groupId>
              <artifactId>jython</artifactId>
              <version>2.7.0</version>
        </dependency>

然后运行个例子

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

然后就挂了,显示一大堆错,吓死宝宝

ImportError: Cannot import site module and its dependencies

实际上只要设置了属性就不会再出现

 Properties props = new Properties();
 props.put("python.console.encoding", "UTF-8"); 
 props.put("python.security.respectJavaAccessibility", "false"); 
 props.put("python.import.site","false");
 Properties preprops = System.getProperties();

 

eclipse中使用jython

标签:

原文地址:http://www.cnblogs.com/laodageblog/p/5869811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!