7

如何在 Android 中使用 DefaultHttpClient?

4

3 回答 3

15

我建议阅读 android-api 提供的教程。

这是一些使用 DefaultHttpClient 的随机示例,通过示例文件夹中的简单文本搜索找到。

编辑:样本源不是为了展示一些东西。它只是请求 url 的内容并将其存储为字符串。这是一个显示加载内容的示例(只要它是字符串数据,如 html-、css- 或 javascript 文件):

主要的.xml

  <?xml version="1.0" encoding="utf-8"?>
  <TextView xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/textview"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
  />

在您的应用程序的 onCreate 中添加:

  // Create client and set our specific user-agent string
  HttpClient client = new DefaultHttpClient();
  HttpGet request = new HttpGet("http://stackoverflow.com/opensearch.xml");
  request.setHeader("User-Agent", "set your desired User-Agent");

  try {
      HttpResponse response = client.execute(request);

      // Check if server response is valid
      StatusLine status = response.getStatusLine();
      if (status.getStatusCode() != 200) {
          throw new IOException("Invalid response from server: " + status.toString());
      }

      // Pull content stream from response
      HttpEntity entity = response.getEntity();
      InputStream inputStream = entity.getContent();

      ByteArrayOutputStream content = new ByteArrayOutputStream();

      // Read response into a buffered stream
      int readBytes = 0;
      byte[] sBuffer = new byte[512];
      while ((readBytes = inputStream.read(sBuffer)) != -1) {
          content.write(sBuffer, 0, readBytes);
      }

      // Return result from buffered stream
      String dataAsString = new String(content.toByteArray());

      TextView tv;
      tv = (TextView) findViewById(R.id.textview);
      tv.setText(dataAsString);

  } catch (IOException e) {
     Log.d("error", e.getLocalizedMessage());
  }

此示例现在加载给定 url 的内容(示例中为 stackoverflow 的 OpenSearchDescription)并将接收到的数据写入 TextView。

于 2011-03-23T19:59:25.030 回答
3

这是一个通用代码示例:

DefaultHttpClient defaultHttpClient = new DefaultHttpClient();

HttpGet method = new HttpGet(new URI("http://foo.com"));
HttpResponse response = defaultHttpClient.execute(method);
InputStream data = response.getEntity().getContent();
//Now we use the input stream remember to close it ....
于 2011-03-23T20:04:22.917 回答
0

来自谷歌文档

public DefaultHttpClient (ClientConnectionManager conman, HttpParams params)

从参数和连接管理器创建一个新的 HTTP 客户端。

参数
"conman" 连接管理器,
"params" 参数

public DefaultHttpClient (HttpParams params)
public DefaultHttpClient ()
于 2011-03-23T19:56:44.310 回答