I noticed that Gson converts the string "<" into an unicode escape sequence in JSON output. Can you avoid this somehow, or do characters like "<" and ">" always have to be escaped in JSON?

Consider this example which prints {"s":"\u003c"}; I'd want simply {"s":"<"}.

public static void main(String[] args) {
    Gson gson = new GsonBuilder().create();
    System.out.println(gson.toJson(new Foo()));  
}

static class Foo {
    String s = "<";
}

Context: the piece of JSON I'm creating has nothing to do with HTML pages or even JavaScript; it's just used to pass certain structured information to another piece of software (embedded in a device, written in C).

link|improve this question

78% accept rate
1  
Does GSON default to doing that? Whoa. That is rather strange default setting, although perfectly legal thing to do from JSON spec perspective. – StaxMan Nov 10 '10 at 19:26
Yeah, it was surprising to me too. Luckily the remedy is easy once you know where to look. :) Otherwise, after one day's experience with it, I find Gson a really clean, nice library, with a great user guide too! – Jonik Nov 10 '10 at 19:44
This also happens to the "=" character, which turns into "\u003d". – Russell Silva May 4 '11 at 21:08
feedback

1 Answer

up vote 12 down vote accepted

You need to disable HTML escaping.

Gson gson = new GsonBuilder().disableHtmlEscaping().create();
link|improve this answer
Yes, this was it. Thanks! – Jonik Nov 10 '10 at 17:50
You're welcome. – BalusC Nov 10 '10 at 17:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.