茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    Java自動根據(jù)文件內容的編碼來讀取避免亂碼
    來源:易賢網(wǎng) 閱讀:1316 次 日期:2015-04-10 16:05:38
    溫馨提示:易賢網(wǎng)小編為您整理了“Java自動根據(jù)文件內容的編碼來讀取避免亂碼”,方便廣大網(wǎng)友查閱!

    通過cpdetector這個開源的jar包可以自動判斷當前文件的內容編碼,從而在讀取的時候選擇正確的編碼讀取,避免亂碼問題。

    測試結果,提供截圖:

    名單

    package com.zuidaima.test;

    import info.monitorenter.cpdetector.io.ASCIIDetector;

    import info.monitorenter.cpdetector.io.CodepageDetectorProxy;

    import info.monitorenter.cpdetector.io.JChardetFacade;

    import info.monitorenter.cpdetector.io.ParsingDetector;

    import info.monitorenter.cpdetector.io.UnicodeDetector;

    import java.io.BufferedReader;

    import java.io.File;

    import java.io.FileInputStream;

    import java.io.InputStreamReader;

    public class Main {

    public static String getContent(String path) throws Exception {

    File file = new File(path);

    CodepageDetectorProxy detector = CodepageDetectorProxy.getInstance();

    detector.add(new ParsingDetector(false));

    detector.add(JChardetFacade.getInstance());

    detector.add(ASCIIDetector.getInstance());

    detector.add(UnicodeDetector.getInstance());

    java.nio.charset.Charset charset = null;

    try {

    charset = detector.detectCodepage(file.toURI().toURL());

    } catch (Exception ex) {

    ex.printStackTrace();

    }

    String charsetName = null;

    if (charset != null) {

    charsetName = charset.name();

    } else {

    charsetName = "UTF-8";

    }

    BufferedReader reader = new BufferedReader(new InputStreamReader(

    new FileInputStream(file), charsetName));

    String line = null;

    String lines = "";

    while ((line = reader.readLine()) != null) {

    lines += line + " ";

    }

    reader.close();

    return lines;

    }

    public static void main(String[] args) throws Exception {

    System.out.println(getContent("bin/gbk.txt"));

    System.out.println(getContent("bin/utf8.txt"));

    }

    }

    更多信息請查看IT技術專欄

    更多信息請查看網(wǎng)絡編程
    易賢網(wǎng)手機網(wǎng)站地址:Java自動根據(jù)文件內容的編碼來讀取避免亂碼

    2026上岸·考公考編培訓報班

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)