Non Ascii Unicode Encode and Decode in java
Non Ascii Unicode Encode and Decode in java
How we can do programmatically in java "Non-ASCII Unicode encoding".
input is: "abc ആന"
and output should be :
"abc u0d06u0d28"
Note:- Ascii and space characters not converted to Unicode character
all other characters will be Encoded.
we need this conversion because Server does not support non-ascii characters.
Uri.encode()
URLEncoder.encode()
This is done with a litle method that replaces all non-ascii characters by their unicode escape sequence (don't forget to escape the backslash as well or your encoding will not be bijective). Show us what you already did and where it broke down.
– Henry
Sep 3 at 6:31
1 Answer
1
Need to change server side encode to UTF-8 which will support in MySql Database
and on android side, you also need to encode those characters in UTF-8, becouse the characters (ആന
) is in UTF-8
ആന
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setChunkedStreamingMode(0);
urlConnection.setConnectTimeout(2500);
urlConnection.setRequestProperty("Content-Type", "application/json; charset=UTF-8");//<- and here !!!
urlConnection.setDoOutput(true);
urlConnection.setDoInput(true);
urlConnection.setRequestMethod("POST");
if(jsonObject!=null)
OutputStream os = urlConnection.getOutputStream();
os.write(jsonObject.toString().getBytes("UTF-8"));//<- and here !!!
Thanks for answering .. wheather this problem is solved in android side only .like converting the Non ascii character to unicode.
– Sanoop Vasu
Sep 3 at 8:03
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
for example
Uri.encode()
/URLEncoder.encode()
– pskink
Sep 3 at 6:19