java txt 编码格式

首先对java中得编码格式进行了研究。发现在java中

java编码与txt编码对应
java txt
unicode unicode big endian
utf-8 utf-8
utf-16 unicode
gb2312 ANSI

java读取txt文件,如果编码格式不匹配,就会出现乱码现象。所以读取txt文件的时候需要设置读取编码。txt文档编码格式都是写在文件头的,在程序中需要先解析文件的编码格式,获得编码格式后,在按此格式读取文件就不会产生乱码了。

 
 
  1. InputStream inputStream = new FileInputStream("E:/1.txt");  
  2.         byte[] head = new byte[3];  
  3.         inputStream.read(head);   
  4.         String code = "";  
  5.  
  6.             code = "gb2312";  
  7.         if (head[0] == -1 && head[1] == -2 )  
  8.             code = "UTF-16";  
  9.         if (head[0] == -2 && head[1] == -1 )  
  10.             code = "Unicode";  
  11.         if(head[0]==-17 && head[1]==-69 && head[2] ==-65)  
  12.             code = "UTF-8";  
  13.           
  14.         System.out.println(code); 

这样就获得了txt的编码格式了。




public class EncodingType
 {
  public static System.Text.Encoding GetType(string FILE_NAME)
  {
   FileStream fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.Read);
   System.Text.Encoding r= GetType(fs);
   fs.Close();
   return r;
  }
  public static System.Text.Encoding GetType(FileStream fs)
  {
   /*byte[] Unicode=new byte[]{0xFF,0xFE};
   byte[] UnicodeBIG=new byte[]{0xFE,0xFF};
   byte[] UTF8=new byte[]{0xEF,0xBB,0xBF};*/

   BinaryReader r = new BinaryReader(fs,System.Text.Encoding.Default);
   byte[] ss=r.ReadBytes(3);
   r.Close();
   //编码类型 Coding=编码类型.ASCII;
   if(ss[0]>=0xEF)
   {
    if(ss[0]==0xEF && ss[1]==0xBB && ss[2]==0xBF)
    {
     return System.Text.Encoding.UTF8;
    }
    else if(ss[0]==0xFE && ss[1]==0xFF)
    {
     return System.Text.Encoding.BigEndianUnicode;
    }
    else if(ss[0]==0xFF && ss[1]==0xFE)
    {
     return System.Text.Encoding.Unicode;
    }
    else
    {
     return System.Text.Encoding.Default;
    }
   }
   else
   {
    return System.Text.Encoding.Default;
   }
  }
 }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值