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

jpython LookupError: unknown encoding 'ms936' 问题解决

2016-02-23 09:51 781 查看
参考:
http://blog.csdn.net/songsallyjin/article/details/47919601 http://blog.sina.com.cn/s/blog_6f60d5ca0101dsdc.html
方法一:

进入cmd后先执chcp437命令,再进入jython,然后就可以了,这是临时性的,每次进入jython都要执行chcp437.

方法二:

到jpython2.5.3文件下,找到registry文件,将里面的内容这个部分修改,就是将红色标注的语句行的注释去掉。

修改前:

# Setting this to a valid codec name will cause the console to use a

# different encoding when reading commands from the console.
#python.console.encoding = cp850

修改后:

# Setting this to a valid codec name will cause the console to use a

# different encoding when reading commands from the console.
python.console.encoding = cp850
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息