Hi,

I've been bogging down for a while but no like.
I am trying to get a page with HTTP request, but it has non-ascii 
characters such as "Ç", "Ş", "İ", "Ö", "Ğ".
But, I see other characters  without any problem except those kind of 
characters.
I use the following code, got it through google search.
It does the job except the above problem.

String responseString;
HttpClient httpclient = new DefaultHttpClient(); 
HttpResponse response = httpclient.execute(new 
HttpGet("http://somepage.com";));
StatusLine statusLine = response.getStatusLine();
if(statusLine.getStatusCode() == HttpStatus.SC_OK){ 
  ByteArrayOutputStream out = new ByteArrayOutputStream();
  DataOutputStream dout = new DataOutputStream(out);
  response.getEntity().writeTo(dout);
   out.close();
   responseString = out.toString();
   httpclient.getConnectionManager().shutdown();
}

Any help is appreciated

Regards
TM

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to