当前位置: 技术问答>java相关
如何获得系统默认的编码方式!!
来源: 互联网 发布时间:2015-04-13
本文导语: rt | String file_encoding = System.getProperty("file.encoding"); 给分!!! | ResourceBundle | System.getProperty("file.encoding") | System.out.println(System.getProperty("file.encoding")); ...
rt
|
String file_encoding = System.getProperty("file.encoding");
给分!!!
给分!!!
|
ResourceBundle
|
System.getProperty("file.encoding")
|
System.out.println(System.getProperty("file.encoding"));
System.out.println(System.getProperty("user.language"));
System.out.println(System.getProperty("user.region"));
在我的机器上打出:
GBK
zh
CN
System.out.println(System.getProperty("user.language"));
System.out.println(System.getProperty("user.region"));
在我的机器上打出:
GBK
zh
CN