1

我试图下载和解析带有外国(中文)字符的网页。我不确定是否应该使用“utf-8”或其他东西。但这些似乎都不适合我。我将示例维基词典代码用于getUrlContent().

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mText = (TextView) findViewById(R.id.textview1);
    huaren.prepareUserAgent(this);
    String test = new String("fail");

    try {
        test = getUrlContent("http://huaren.us/");
    } catch (ApiException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    byte[] b = new byte[100000];

    try {
          b = test.getBytes("utf-8");
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    char[] charArr = (new String(b)).toCharArray();
    CharSequence seq = java.nio.CharBuffer.wrap(charArr); 

    mText.setText(charArr, 0, 1000);//.setText(seq);
}

protected static synchronized String getUrlContent(String url) throws ApiException {
    if (sUserAgent == null) {
        throw new ApiException("User-Agent string must be prepared");
    }

    // Create client and set our specific user-agent string
    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet(url);
    request.setHeader("User-Agent", sUserAgent);

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

        // Check if server response is valid
        StatusLine status = response.getStatusLine();
        if (status.getStatusCode() != HTTP_STATUS_OK) {
            throw new ApiException("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;
        while ((readBytes = inputStream.read(sBuffer)) != -1) {
            content.write(sBuffer, 0, readBytes);
        }

        // Return result from buffered stream
        return new String(content.toByteArray(), "utf-8");
    } catch (IOException e) {
        throw new ApiException("Problem communicating with API", e);
    }
}
4

2 回答 2

2

字符集在页面本身中定义:

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 

通常,有 3 种方法可以指定 HTTP 服务器 HTML 页面的编码:

HTTP 的 Content-Type 标头

Content-Type: text/html; charset=utf-8

在 XML 声明中编码伪属性

<?xml version="1.0" encoding="utf-8" ?>

头部内的元标记

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

有关详细信息,请参阅字符编码

因此,您应该尝试评估每个可能的声明以找到适当的编码。如果遇到 Content-Type 声明元标记,您可以尝试使用 utf-8 解析页面并重新启动。

于 2010-01-19T08:01:55.480 回答
1

试试GuessEncoding库。它不是 100% 的防弹,但可以帮助很多次。

于 2010-01-19T08:00:50.817 回答