重做操作系统后,发现eclipse不支持GBK、GB2312编码了,使用下面的程序查看操作系统默认编码得iso-8859-1
public class EchoDefaultSystemEncoding {
        public static void main(String[] args) {
                String encoding = System.getProperty("file.encoding");
                System.out.println("Default System Encoding:" + encoding);
        }
}
如图所示,在keybord加入一项,重启操作系统后,再次运行上面的程序,发现操作系统编码被修改为GBK。
windows字符编码-LMLPHP
10-04 07:03