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

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

測試結(jié)果,提供截圖:

名單

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技術(shù)專欄

更多信息請查看網(wǎng)絡(luò)編程

扫描二维码关注易贤网公众号

易賢網(wǎng)手機(jī)網(wǎng)站地址:Java自動根據(jù)文件內(nèi)容的編碼來讀取避免亂碼
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機(jī)號
  • 驗證碼

【备考推荐】2025年事业单位联考系统精讲课,免费试看,配套资料包邮到家

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