b*********n 发帖数: 1258 | 1 请问
java 里可以直接去读 txt file 里指定的第 n 行
而不经过读入前 n-1 行吗?
谢谢 |
p**********g 发帖数: 187 | 2 looks so good if possible
【在 b*********n 的大作中提到】 : 请问 : java 里可以直接去读 txt file 里指定的第 n 行 : 而不经过读入前 n-1 行吗? : 谢谢
|
t****t 发帖数: 6806 | 3 请问...有任何一种工具可以做到这一点吗?
【在 b*********n 的大作中提到】 : 请问 : java 里可以直接去读 txt file 里指定的第 n 行 : 而不经过读入前 n-1 行吗? : 谢谢
|
a****l 发帖数: 8211 | 4 no tool could possibly read the n-th line without reading the first n-1
lines. The reason is simple: no one knows where the n-th line is without
first reading the n-1 lines.
Of course the tool can only output the n-th line to you, but that does not
mean the tool will not need read all the n lines.
【在 b*********n 的大作中提到】 : 请问 : java 里可以直接去读 txt file 里指定的第 n 行 : 而不经过读入前 n-1 行吗? : 谢谢
|
r****t 发帖数: 10904 | |
g*****g 发帖数: 34805 | 6 You can always skip desired bytes without reading,
, but not desired lines.
【在 r****t 的大作中提到】 : hadoop 对大文件可以从中间读么?
|
P*****f 发帖数: 2272 | 7 no. In fact, most file systems only support sequential and random access
patterns, not the content-indexing access, which is typically done by
database.
【在 b*********n 的大作中提到】 : 请问 : java 里可以直接去读 txt file 里指定的第 n 行 : 而不经过读入前 n-1 行吗? : 谢谢
|