I am using json developing android sdk.
I found writing json string is annoying, take a look:
post_my_server("{\"cmd\":\"new_comment\"}");
I need to manually escape quotes, is there any clean way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use single quotes “{‘cmd’:’new_comment’}”.
Alternatively, there is free code at http://json.org/java/ for implementing JSON at an object level. It’s free as in very permissive, I am no lawyer, but it would seem that the only stipulation is that the software you include it in is good, and not evil.