当前位置: 技术问答>java相关
请问unicode转换问题,很简单,可是很着急!!!!!谢谢
来源: 互联网 发布时间:2015-03-27
本文导语: 请问在JAVA中如何实现中文和UNICODE码之间的转换 例如: "中文测试"----->"u4e2du6587u6d4bu8bd5"----->"中文测试" 请诸位高手指教,谢谢! | import sun.io.ByteToCharConverter; import sun.io.CharToByteConverter; public class test{ ...
请问在JAVA中如何实现中文和UNICODE码之间的转换
例如:
"中文测试"----->"u4e2du6587u6d4bu8bd5"----->"中文测试"
请诸位高手指教,谢谢!
例如:
"中文测试"----->"u4e2du6587u6d4bu8bd5"----->"中文测试"
请诸位高手指教,谢谢!
|
import sun.io.ByteToCharConverter;
import sun.io.CharToByteConverter;
public class test{
public test(){
}
public static void main(String[] args){
try{
ByteToCharConverter converter = ByteToCharConverter.getC
onverter("GB2312");
CharToByteConverter converter1 = CharToByteConverter.get
Converter("GB2312");
byte[] b = "中文测试".getBytes();
System.out.println(new String(b));
char[] c = new char[4];
c = converter.convertAll(b);
for (int i=0;i
import sun.io.CharToByteConverter;
public class test{
public test(){
}
public static void main(String[] args){
try{
ByteToCharConverter converter = ByteToCharConverter.getC
onverter("GB2312");
CharToByteConverter converter1 = CharToByteConverter.get
Converter("GB2312");
byte[] b = "中文测试".getBytes();
System.out.println(new String(b));
char[] c = new char[4];
c = converter.convertAll(b);
for (int i=0;i