当前位置: 技术问答>java相关
谁能告诉我怎么将普通格式的文本文件转换成UNicode格式的文本?
来源: 互联网 发布时间:2017-04-25
本文导语: 送分!! | String(byte[] bytes, String charsetName) Constructs a new String by decoding the specified array of bytes using the specified charset. 例子: String a="asdfasdfas"; String b= new String(a..g...
送分!!
|
String(byte[] bytes, String charsetName)
Constructs a new String by decoding the specified array of bytes using the specified charset.
例子:
String a="asdfasdfas";
String b= new String(a..getBytes(),"IS)-8859-1");//就是你所要的
Constructs a new String by decoding the specified array of bytes using the specified charset.
例子:
String a="asdfasdfas";
String b= new String(a..getBytes(),"IS)-8859-1");//就是你所要的
|
文件
用nodepad打开,然后选择存储为UNICODE文件即可
应付,应付
用nodepad打开,然后选择存储为UNICODE文件即可
应付,应付
|
编程就用楼上的方法了