如何在 python 中使用套接字发送文件?
我已经熟悉 python 和套接字的用法,并且可以通过它们发送文本字符串。但是我该如何发送 MP3 文件呢?
I am already familiar with python and socket usage and can send strings of text over these. But how would i go about sending, say, an MP3 file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的代码将按照您字面上的要求执行操作(假设
thesocket
是一个连接的流套接字):但是当然,如果没有一些更高级别的协议来帮助对方知道它有多少数据,它就不可能有多大用处将要接收什么类型的数据等等。
The following code would do what you literally ask (assuming
thesocket
is a connected stream socket):but of course it's unlikely to be much use without some higher-level protocol to help the counterpart know how much data it's going to receive, what type of data, and so forth.