Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从指定位置读取文件到该行的末尾。
例子:
文件内容:
01234567 f1=value f2=value f3=value
01234567 = 字符位置。我希望它从值中的“v”开始读取该行,并且我希望它读取到该行的末尾。所以位置是3。
首先运行您的文本文件colrm。或者,在务实地阅读每一行时,使用String.substring.
colrm
String.substring
看看FileInputStream.skip
如果这不起作用,您可以尝试从流中读取n个字节以放在开始读取位置(最好通过块而不是一次字节)