开发者

Unreadable Characters in Apache HttpClient

I'm trying to login to a webpage, but even before that, I'm loading the page using HttpGet, and this is one the lines that's being returned, ÓA; That's all I could put, won't let me paste any other characters. But they are all like that, like I'm somehow getting the wrong encoding? Here is the co开发者_StackOverflowde I am using to GET

      HttpGet httpget = new HttpGet(url);
      if(headers == null) {
          headers = getDefaultHeaders();
      }
      for(String s : headers.keySet()) {
          httpget.addHeader(s, headers.get(s));
      }
        HttpResponse response = getClient().execute(httpget);
        HttpEntity entity = response.getEntity();
        System.out.println("Status Line: " + response.getStatusLine());
        if (entity != null) {
            InputStream input = entity.getContent();
            BufferedReader reader = new BufferedReader(new InputStreamReader(input));
            String ln = "";
            while((ln = reader.readLine()) != null) {
                System.out.println("During Get - " + ln);
            }
        }

What am I doing wrong?

Thanks for any help.

If you need any more information like headers, just ask.


The following line is possibly the cause of your problems:

  BufferedReader reader = new BufferedReader(new InputStreamReader(input));

You are creating a reader using the default characterset of your platform, and completely ignoring any character set that may be specified in the HTTP response headers.


If you are getting the same problem when reading the content the correct way, then it is possible that the server is at fault for not setting the response header correctly.


DO the entity reading like this:

String content = org.apache.http.util.EntityUtils.toString( entity );
System.out.println(content);

This is going to read it all for you so you can check what's being really returned.


Make sure that you didn't accidentally go to port 443 with a simple HTTP connection. Because in that case you will get back the SSL handshake instead of an HTTP response.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜