[Java]读取文件成字符串
Author: 咳嗽di小鱼 Date: March 9, 2012 Category: Code Dump
String filename = "path/file.txt";
File file = new File(filename);
FileInputStream fileinput = new FileInputStream(file.getAbsolutePath());
int x = fileinput.available();
byte b[] = new byte[x];
fileinput.read(b);
String string = new String(b);
System.out.println(string);
开始实习以后, 真的没什么自己的时间了. 学到了不少东西, 但还是老样子, 自己摸索自己成长. 长篇的理论知识整理确实重要, 但这些代码片段, 在需要的时候也是实实在在能帮上忙的东西.
闲的时间少了, 估计以后这类东西会比较多吧...
水文一篇
被发现了...`忙不过来啊
:)