最近遇到一個問題,Java讀取文字檔(例如csv檔、txt檔等),遇到中文就變成亂碼。讀取程式碼如下:
List<String> lines=new ArrayList<String>(); BufferedReader br = new BufferedReader(new FileReader(fileName)); String line = null; while ((line = br.readLine()) != null) { lines.add(line); } br.close();
相關影片教學推薦:java線上學習
#原理:
InputStream 類別是讀取位元組的父類,
InputStreamReader 類別就是關聯位元組到字元的橋樑,它負責在I/O 過程中處理讀取位元組到字元的轉換,而具體位元組到字元的解碼實現它由
StreamDecoder 去實現,在
StreamDecoder 解碼過程中必須由使用者指定Charset 編碼格式。
總結:Java讀取資料流的時候,一定要指定資料流的編碼方式,否則會使用本機環境中的預設字元集。
經過上述分析,修改後的程式碼如下:List<String> lines=new ArrayList<String>(); BufferedReader br=new BufferedReader(new InputStreamReader(new FileInputStream(fileName),"UTF-8")); String line = null; while ((line = br.readLine()) != null) { lines.add(line); } br.close();
以上是java讀取文字檔出現亂碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!