java读取txt文件

古人学问无遗力,少壮工夫老始成。这篇文章主要讲述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文件】

    推荐阅读