徹底解決android讀取中文txt,lrc的亂碼(自動判斷文件類型並轉碼)

來源:互聯網
上載者:User

這幾天在研究android的播放器,在讀取歌詞的時候,老是亂碼,使我很糾結:

今天在網上看到一個檔案轉碼的文章,徹底解決了我的亂碼問題,這樣我就不用自己去手動的轉碼lrc歌詞檔案你的編碼了,現在與大家分享一下這一文章(其中裡面的幾個if  else裡面的條件原理不是很懂,請高手幫忙解答):

package com.qgmobile.utils;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * 轉換檔的編碼格式
 * @author yangchuxi
 *
 */
public class ConvertFileCode {
 public String converfile(String filepath){
  System.out.println("ConvertFileCode--------->"+filepath);
  File file=new File(filepath);
  FileInputStream fis=null;
  BufferedInputStream bis=null;
  BufferedReader reader=null;
  String text="";
  try {
   fis=new FileInputStream(file);
   bis=new BufferedInputStream(fis);
   bis.mark(4);
   byte[] first3bytes=new byte[3];
//   System.out.println("");
   //找到文檔的前三個位元組並自動判斷文件類型。
   bis.read(first3bytes);
   bis.reset();
     if (first3bytes[0] == (byte) 0xEF && first3bytes[1] == (byte) 0xBB
                      && first3bytes[2] == (byte) 0xBF) {// utf-8

              reader = new BufferedReader(new InputStreamReader(bis, "utf-8"));

      } else if (first3bytes[0] == (byte) 0xFF
                      && first3bytes[1] == (byte) 0xFE) {

              reader = new BufferedReader(
                              new InputStreamReader(bis, "unicode"));
      } else if (first3bytes[0] == (byte) 0xFE
                      && first3bytes[1] == (byte) 0xFF) {

              reader = new BufferedReader(new InputStreamReader(bis,
                              "utf-16be"));
      } else if (first3bytes[0] == (byte) 0xFF
                      && first3bytes[1] == (byte) 0xFF) {

              reader = new BufferedReader(new InputStreamReader(bis,
                              "utf-16le"));
      } else {

              reader = new BufferedReader(new InputStreamReader(bis, "GBK"));
      }
      String str = reader.readLine();

         while (str != null) {
             text = text + str + "/n";
             str = reader.readLine();
           }
         System.out.println("text"+text);
  } catch (Exception e) {
   e.printStackTrace();
  }finally{
   if (fis!=null) {
    try {
     fis.close();
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
   if(bis!=null){
    try {
     bis.close();
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }
 
  return text;
 
 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.