import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.util.Properties;
import java.util.Set;
public class TestProperties {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
// Properties p=System.getProperties();
// p.setProperty("file.encoding","ISO8859-1");//------------>代码1
// p.setProperty("sun.jnu.encoding","");
System.out.println(Charset.defaultCharset());
System.getProperties().put("file.encoding", "iso8859-1");
// System.getProperties().list(System.out);
System.out.println(Charset.defaultCharset());
System.out.println(Charset.defaultCharset());
System.getProperties().put("file.encoding", "iso8859-1");
//System.getProperties().list(System.out);
System.out.println(Charset.defaultCharset());
// Set s=p.keySet();
// for(Object o:s)
// {
// Object ss=p.get(o);
// System.out.println(o+"="+ss);
// }
// String str ="中国";
// String cha=Charset.defaultCharset().name();
// System.out.println(cha);
// byte [] buf = str.getBytes();
//
//
// for(int i = 0;i < buf.length;i++)
// System.out.println(Integer.toHexString(buf[i]));
//
//
//
// for(int i = 0 ;i < buf.length;i++)
// System.out.write(buf[i]);
//
//
// System.out.println();
}
}
我的源码 |