I have some JSon that I am deserializing using GSon.

{
"resp": {
"posts": [
  {
    ...
    "public": true,
    ...
  }] 
}

My problem is that public is a Java keyword, so how would I make a field in my Class that correlates with the public field in the JSon?

link|improve this question

It's JSON and Gson. – kay Jun 6 '11 at 22:46
feedback

1 Answer

up vote 7 down vote accepted

You could use a different name for your field, using gson's Field Naming Support.

public class Post {
    @SerializedName("public")
    private boolean isPublic;
    ...
}
link|improve this answer
Thanks, this solved the problem. – LanguagesNamedAfterCofee Jun 6 '11 at 23:57
feedback

Your Answer

 
or
required, but never shown

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