关于如何在使用 BufferedOuput/Input Stream 时发送文件名的任何想法?
我正在发送一些 jpeg(有时是 zip)文件。我想知道是否有人知道如何将文件名(或自定义文件名)与文件一起发送,而不是定义
I am sending a few jpegs (and sometimes zip) files. I was wondering if anyone knew of a way to send the filename (or a custom filename) with the file, rather than definin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用 DataOutputStream/DataInputStream 并在发送文件长度之前使用 writeUTF()/readUTF() 文件名,然后发送文件。
基本上,您必须有一个自己的小型协议来发送您需要的信息。
东西
喜欢读书的
I would use a DataOutputStream/DataInputStream and use writeUTF()/readUTF() the filename before sending the length of the file, followed by the file.
Basicly you have to have a small protocol of your own which sends the infomration you need.
Something like
to read