Java中读取txt文件最后一行的内容..

Java中读取txt文件最后一行的内容..... Java中读取txt文件最后一行的内容.. 展开
 我来答
shixuegen
推荐于2016-01-15 · TA获得超过235个赞
知道小有建树答主
回答量:134
采纳率:100%
帮助的人:167万
展开全部
public static void main(String[] args) throws Exception {
File file = new File("E:/a.txt"); // 100M
long start = System.currentTimeMillis();
String lastLine = readLastLine(file, "gbk");
long delt = System.currentTimeMillis() - start;
System.out.println(lastLine);
System.out.println("读取时间(毫秒):" + delt);

file = new File("E:/b.txt");// 仅一行文字
start = System.currentTimeMillis();
lastLine = readLastLine(file, "gbk");
delt = System.currentTimeMillis() - start;
System.out.println(lastLine);
System.out.println("读取时间(毫秒):" + delt);
}

public static String readLastLine(File file, String charset) throws IOException {
if (!file.exists() || file.isDirectory() || !file.canRead()) {
return null;
}
RandomAccessFile raf = null;
try {
raf = new RandomAccessFile(file, "r");
long len = raf.length();
if (len == 0L) {
return "";
} else {
long pos = len - 1;
while (pos > 0) {
pos--;
raf.seek(pos);
if (raf.readByte() == '\n') {
break;
}
}
if (pos == 0) {
raf.seek(0);
}
byte[] bytes = new byte[(int) (len - pos)];
raf.read(bytes);
if (charset == null) {
return new String(bytes);
} else {
return new String(bytes, charset);
}
}
} catch (FileNotFoundException e) {
} finally {
if (raf != null) {
try {
raf.close();
} catch (Exception e2) {
}
}
}
return null;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
天空上尉sunny
2013-09-19
知道答主
回答量:40
采纳率:0%
帮助的人:10.7万
展开全部
撒旦撒旦十大 阿萨德
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式