JSONObject getString(String key) - Character Encoding
Brought to you by:
aalmiray
Hi, i-ve noticed that the mentioned method (line 2086 - "public String getString(String key)" ) doesn't care about character encoding, in fact if i've an utf8 encoded string with non-ASCII characters those are transformed in question marks.
I think that can be added a method like this public String getString(String key, String charset) that decodes the string with the given charset and not with the system default.