浏览 1384 次
锁定老帖子 主题:字符编码转换问题
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-03-23
然后在接下来的解码过程中,接受中文输入, 最后在编码过程中,把输入的中文编码为iso-8859-1 但是运行结果却显示乱码.求指点: 代码如下: import java.util.*; import java.io.UnsupportedEncodingException; import java.nio.charset.*; public class CharSetTest { public static void main(String[] args) throws Exception { // Map m = Charset.availableCharsets(); // Set names =m.keySet(); // Iterator it =names.iterator(); // while(it.hasNext()) // { // System.out.println(it.next()); // } Properties pps = System.getProperties(); //pps.list(System.out); pps.put("file.encoding","ISO-8859-1"); pps.list(System.out); int data; byte[] buf = new byte[100]; int i =0; try { while((data = System.in.read())!='q') { buf[i] = (byte)data; i++; } } catch (Exception e) { // TODO: handle exception } String str = new String(buf,0,i); // System.out.println(str); String strGBK; strGBK = new String(str.getBytes("ISO-8859-1"),"GBK"); System.out.println(strGBK); } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |