看板java
标 题Re: [问题] 请问有关BIG5、Unicode之间的转换
发信站SayYA 资讯站 (Sun Feb 26 01:54:27 2006)
转信站ptt!ctu-reader!news.nctu!SayYa
※ 引述《qrtt1 (thinking more and more)》之铭言:
> ※ 引述《[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]+" ");
> }
> }
你好^^
我的意思是并不知道"一"这个字
只收到BIG5的编码 A440 (42048)
想知道有无function可以呼叫
传入 A440 (42048)
可传回"一"的 Unicode 编码 4E00
谢谢~
--
※ Origin: SayYA 资讯站 <bbs.sayya.org>
◆ From: 140.116.143.197