交换文件客户端-服务器架构JAVA
我正在尝试从 Android 手机发送图像,在服务器端处理它,然后将其返回到手机。我已经能够将文件从手机发送到服务器,但服务器似乎无法使用相同的套接字发送图像。我正在使用 bufferedinputstream 和 bufferedoutputstream。是否有可能或者我需要2个不同的端口?代码是java的。
I am trying to send an image from the android phone, process it on the server side, and then get it back to the phone. I have been able to send the file from the phone to the server but then it seems that the server cannot send the image using the same socket. I am using bufferedinputstream and bufferedoutputsteram. is it possible or would i need 2 different ports? code is in java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用一个套接字连接可以进行 2 路通信。
简而言之:服务器的输出流是客户端的输入流,反之亦然。
It is possible to have a 2-way-communication by using one socket connection.
In easy words: the server's outputstream is the client's inputstream and vice versa.