android客户端和php服务器之间的基于Socket的通信

发布于 2024-10-28 13:16:47 字数 163 浏览 1 评论 0原文

我有 PHP 服务器,它打开套接字连接并开始侦听特定端口。我必须编写一个向服务器发送数据的android客户端。然后服务器读取套接字以获取传入数据并将其响应写入套接字。交换的数据是一系列字符串。我如何才能实现这种沟通?使用什么样的协议?

请给我指示。

谢谢。

伊拉

I have PHP server that opens a socket connection and start listening on specific port. I have to write an android client that sends data to the server. Then server reads a socket for incoming data and writes its response to the socket. Data exchanged are the series of strings. How would I get this communication possible? What kind of protocol is used?

Kindly give me the direction.

Thanks.

Iyra

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

迷离° 2024-11-04 13:16:47

使用 URLConnection 类。下面是从 uri 读取数据的示例代码。要写入数据,请使用 getOutputStream()

URL url = new URL("ftp://example.com/example.html");
URLConnection urlConnection = url.openConnection();
InputStream in = new BufferedInputStream(urlConnection.getInputStream());
try {
  readStream(in);
} finally {
  in.close();
}

Use the URLConnection class. Here's a sample code to read data from a uri. To write data, use getOutputStream()

URL url = new URL("ftp://example.com/example.html");
URLConnection urlConnection = url.openConnection();
InputStream in = new BufferedInputStream(urlConnection.getInputStream());
try {
  readStream(in);
} finally {
  in.close();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文