由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - java可以直接去读txt file里指定的一行吗?
相关主题
iterator and [], which is faster?TIOBE Index for December 2015
java 里可以插入linux command吗? (转载) 【求助】如何使IE下載直接到目的地,不透過暫存 (转载)
一种新型的推测编程请教一个python urlopen的问题
如何看一共有多少行程序how to display an excel file in java? (转载)
How to read binary(data) file generated by Fortran in C/C++ (转载)java library 的文件扩展名是什么?
怎么在c shell里给file加一行string?怎么看java的源代码,谢谢
scala. go. clojure.学一個 学哪个?新版的 eclipse 有什么大的改进?
请教,做了2年多java后端的大妈有必要转手机开发吗?Python:请问如何把list变成structured array。
相关话题的讨论汇总
话题: lines话题: txt话题: file话题: 指定话题: java
进入Programming版参与讨论
1 (共1页)
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
5
hadoop 对大文件可以从中间读么?
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 行吗?
: 谢谢

1 (共1页)
进入Programming版参与讨论
相关主题
Python:请问如何把list变成structured array。How to read binary(data) file generated by Fortran in C/C++ (转载)
如何有效的用C/C++ 移动文件中的文本块?怎么在c shell里给file加一行string?
Interfacing Microsoft Excel VBA with FORTRAN (转载)scala. go. clojure.学一個 学哪个?
请教一个matlab的问题请教,做了2年多java后端的大妈有必要转手机开发吗?
iterator and [], which is faster?TIOBE Index for December 2015
java 里可以插入linux command吗? (转载) 【求助】如何使IE下載直接到目的地,不透過暫存 (转载)
一种新型的推测编程请教一个python urlopen的问题
如何看一共有多少行程序how to display an excel file in java? (转载)
相关话题的讨论汇总
话题: lines话题: txt话题: file话题: 指定话题: java