Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
329 views
in Technique[技术] by (71.8m points)

json - Java Reflection : avoid fields with default values

I have the following class structure:

public Class A{
private int a;
private String b;
private B binst;
}

public Class B{
private int x;
private String y;
}

All the getters and setters are defined. I use Java reflection to invoke as follows :

method.invoke(ClassAObj, ClassBObj);

Now, before invoking this, I had only set y and not x. I convert this ClassAObj into JSON and find that the default value of 0 is set for x, and it appears in the JSON. I don't want x field to appear in the JSON. How should I avoid this?

Interestingly, if I set x and not y, the tag y doesn't appear in the JSON.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Because int is a primitive, i.e: not nullable, and usually Json parsers discard null values. You can use the reference type Integer and its default will be null .

public Class B{
  private Integer x;
  private String y;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...