[求助]关于更改默认编码方式
public class CharCode2{public static void main(String args[])throws Exception{
System.getProperties().put("file.encoding","iso8859-1");//更改默认编码方式
System.getProperties().list(System.out);
String strChina="中国";
for(int i=0;i<strChina.length();i++){
System.out.println(Integer.toHexString((int)strChina.charAt(i)));
}
byte[] buf=strChina.getBytes();//按默认编码方式获取字节
for(int i=0;i<buf.length;i++){
System.out.println(Integer.toHexString(buf[i]));
}
System.out.println(strChina);
for(int i=0;i<buf.length;i++){
System.out.write(buf[i]);//本该出现乱码,却没有
}
System.out.println();
}
}
照书上的例子最后‘中国’两个字应该是乱码,我的显示却正常,为什么