使用FileInputStream读取字节数组中的文件
// from 时代Java公众号 - N o w J a v a . c o m import java.io.*; public class Main { public static void main(String[] args) { File file = new File("C://Folder//ReadString.txt"); try { FileInputStream fin = new FileInputStream(file); byte fileContent[] = new byte[(int)file.length()]; fin.read(fileContent); String strFileContent = new String(fileContent); System.out.println("File content : "); System.out.println(strFileContent); /* N o w J a v a . c o m - 时 代 Java 提供 */ } catch(FileNotFoundException e) { System.out.println(