android客户端和php服务器之间的基于Socket的通信
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 URLConnection 类。下面是从 uri 读取数据的示例代码。要写入数据,请使用 getOutputStream()
Use the URLConnection class. Here's a sample code to read data from a uri. To write data, use getOutputStream()