文字コードを指定してファイルを読み込むサンプルです。
サンプルソース
例)C:¥hoge.txtファイルをShift-JISで読み込む
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import java.io.File; import java.io.FileInputStream; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class Sample{ public static void main(String[] args){ File file = new File("C:¥¥hoge.txt"); try{ BufferedReader br = new BufferedReader( new InputStreamReader(new FileInputStream(file), "Shift-JIS")); //読み込んだファイルを1行ずつ画面出力する String line; int count = 0; while ((line = br.readLine()) != null) { System.out.println(++count + "行目:" + line); } //終了処理 br.close(); }catch(IOException e){ e.printStackTrace(); } } } |
メモ
- 指定した文字コードとファイルの文字コードが異なると文字化けします。