看板java
标 题Re: [问题] 请问有关BIG5、Unicode之间的转换
发信站SayYA 资讯站 (Sat Feb 25 22:24:15 2006)
转信站ptt!ctu-reader!news.nctu!SayYa
※ 引述《[email protected] (= =+++)》之铭言:
> 例如,「一」这个字的 Big5 码是 0xA440,而他的 Unicode 是 U+4E00
> 现在已经读取到 A440 (42048) 并存入 char c 中
> 请问如何把 Big5 编码 转成 Unicode 编码?
> 我试过以下的code
> char c = (char)42048;
> String tmp = "" + c;
> System.out.println(new String(tmp.getBytes("BIG5"), "UNICODE"));
> 印出来还是 "?"
> 麻烦大家了^^
单纯想知道编码!?
import java.io.UnsupportedEncodingException;
public class GetIt {
public static void main(String[] args) throws
UnsupportedEncodingException{
String s = "一";
System.out.println("big5");
byte[] b=s.getBytes("big5");
for(int i=0;i<b.length;i++) System.out.print(b[i]+" ");
System.out.println("\n\nunicode");
b=s.getBytes("unicode");
for(int i=0;i<b.length;i++) System.out.print(b[i]+" ");
}
}
--
※ Origin: SayYA 资讯站 <bbs.sayya.org>
◆ From: rat.nutn.edu.tw