可以以及如何将 RandomAccessFile 与 FTP 服务器上包含的文件一起使用?
这个问题与Java有关,
通过使用RandomAccessFile,我打算也能够修改文件而不将其清空。
This problem pertains to Java
By using RandomAccessFile I intend to be able to also modify the file without blanking it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FTP 协议仅勉强支持随机访问读写。
也就是说,FTP 客户端可以使用 REST 命令从特定偏移量开始读取或写入,但它始终会从该点开始截断文件。
The FTP protocol only barely supports random access reads and writes.
That is to say, an FTP client can use the
REST
command to start reading or writing from a particular offset, but it will always truncate the file from that point.