Hi,
I am having a unicode string "\u3403" which is actualy some japansee character
I want to pass it through a JSON object. So i put the value as say
String str =  "\u3403"
jsonObject.put("name",str);
When i do this  the json object internally adds another escape
sequence as  "\\u3403", and the request string has two "\" slashes.
This is interpreted wrongly by the server as it does not detect
unicode name.
What can i do for this ?
Thanks,
Alok.

-- 
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