Thursday, January 19, 2017

java - How to make JSONWriter XML safe?








Using org.json.JSONWriter in Java, if I include XML values, the closing tags show up escaped. For example:



2.0<\/version>

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...