码迷,mamicode.com
首页 > 编程语言 > 详细

Java GBK,UTF-8编码

时间:2014-11-22 01:55:29      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   os   sp   java   

1、GBK,UTF-8编码

注意:一般默认的是GBK编码。

  1. package io.dol.sn;  
  2.   
  3. import java.io.FileOutputStream;  
  4. import java.io.IOException;  
  5. import java.io.OutputStreamWriter;  
  6.   
  7. public class EnCodeStream {  
  8.   
  9.     public static void main(String[] args) throws IOException {  
  10.           
  11.         //WriteGBK();  
  12.         WriteUTF_8();  
  13.     }  
  14.     public static void WriteGBK() throws IOException  
  15.     {  
  16.         //默认是GBK编码  
  17.         OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("gbk.txt"));  
  18.         //OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("UTF_8.txt","GBK"));  
  19.         //注意,此时产生的gbk.txt文件大小为4字节  
  20.         osw.write("海豚");  
  21.         osw.close();  
  22.     }  
  23.     public static void WriteUTF_8() throws IOException  
  24.     {  
  25.         //默认是GBK编码  
  26.         OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("UTF_8.txt"),"UTF-8");  
  27.         //注意,此时产生的UTF_8.txt文件大小为6字节  
  28.         osw.write("海豚");  
  29.         osw.close();  
  30.     }  
  31. }  

2、编码解码

用什么格式编码,就用什么格式解码;编码一次,解码一次。

  1. package io.dol.sn;  
  2.   
  3. import java.io.IOException;  
  4. import java.util.Arrays;  
  5.   
  6. public class EnCodeStream {  
  7.   
  8.     public static void main(String[] args) throws IOException {  
  9.           
  10.         String s1 = "海豚";  
  11.         //编码:  
  12.         //以下一样,因为默认就是GBK编码  
  13.         byte[] bGbk1 = s1.getBytes();  
  14.         byte[] bGbk2 = s1.getBytes("GBK");  
  15.         //Arrays.toString()将字符数组转化为字符串  
  16.         System.out.println(Arrays.toString(bGbk1));  
  17.         System.out.println(Arrays.toString(bGbk2));  
  18.         //解码:  
  19.         String s2 = new String(bGbk1);  
  20.         String s3 = new String(bGbk2,"GBK");  
  21.         //如果用UTF-8解码,则会出现解码格式错误  
  22.         //String s4 = new String(bGbk2,"UTF-8");  
  23.         System.out.println(s2);  
  24.         System.out.println(s3);  
  25.         //这里会打印出“????”  
  26.         //System.out.println(s4);  
  27.     }  
  28. }  

3、GBK,UTF-8都支持中文编码

Java GBK,UTF-8编码

标签:des   style   blog   http   io   ar   os   sp   java   

原文地址:http://www.cnblogs.com/yuyanbian/p/4114555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!