chrischabot / opensocial-java-client

Automatically exported from code.google.com/p/opensocial-java-client
Apache License 2.0
0 stars 0 forks source link

HttpResponseMessage parse problem #29

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Response charset is UTF-8.
Please change.

HttpResponseMessage.java:82

from:
BufferedReader reader = new BufferedReader(new InputStreamReader(in));

to:
BufferedReader reader = new BufferedReader(new InputStreamReader(in, "UTF-
8"));

Original issue reported on code.google.com by kats...@gmail.com on 27 Apr 2010 at 1:04

GoogleCodeExporter commented 9 years ago
Please fix this bug. Currently it is not useable on Google (Java) AppEngine 
because of 
this. (AppEngine has default encoding of ANSI_X3.4-1968)

Original comment by uwe.mau...@gmail.com on 8 May 2010 at 12:11