Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
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

1 Answer

up vote 20 down vote accepted

You need to disable HTML escaping.

Gson gson = new GsonBuilder().disableHtmlEscaping().create();
share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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