套接字基础android客户端和php服务器之间的通信

时间:2011-03-31 06:54:52

标签: android client-server protocols

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

请指点我。

感谢。

Iyra

1 个答案:

答案 0 :(得分:-1)

使用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();
}