Java是否将读取位置保存在InputStream中?
我正在读取数据,Java 是否“保存”您读取的字节,或者我是否必须使用偏移量?
I'm in the process of reading data, does Java 'save' your bytes read, or do I have to use an offset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
FileInputStream 确实保存了您的位置。
如果你有一个3字节的文件,
0xff 0x00 0x0c
,调用:将输出:
A FileInputStream does indeed save your position.
If you have a file with 3 bytes,
0xff 0x00 0x0c
, calling:Will output:
你只是为了镜像@WhiteFang的写作解决方案。
顺便说一句,使用 writeUTF/readUTF 会使写入文件名的长度变得多余。此外,如果您不打算在此信息之后写入任何内容,则无需记录文件数。
You just to mirror @WhiteFang's solution for writing.
BTW, using writeUTF/readUTF makes writing the length of the file name redundant. Additionally, you don't need to record the number of files if you are not going to write anything after this information.
标记您的位置怎么样 http: //download.oracle.com/javase/6/docs/api/java/io/InputStream.html#mark(int)
What about mark your position http://download.oracle.com/javase/6/docs/api/java/io/InputStream.html#mark(int)