java读取txt文件
Posted 静谧星空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取txt文件相关的知识,希望对你有一定的参考价值。
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
public class ClassInfoSort {
public static void main(String[] args) {
reader();
}
public static void reader() {
File file = new File("test.txt");
FileInputStream fin = null;
try {
fin = new FileInputStream(file);
byte[] b = new byte[fin.available()];
fin.read(b);
String str = new String(b,"UTF-8");
System.out.println(str);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
fin.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
以上是关于java读取txt文件的主要内容,如果未能解决你的问题,请参考以下文章
一个文件夹下的多个txt文件,然后随机读取其中一个txt文件的内容(java代码)?