交换文件客户端-服务器架构JAVA

发布于 2025-01-08 09:00:49 字数 163 浏览 0 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒浓于脸红 2025-01-15 09:00:49

使用一个套接字连接可以进行 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文