java
- @JSONField(name = "startDate")
- public Date getDate() {
- return date;
- }
-
- @JSONField(name = "endDate")
- public void setDate(Date date) {
- this.date = date;
- }
-
- @JSONField(serialize = false)
- public int getId() {
- return id;
- }
-
- @JSONField(deserialize = false)
- public void setId(int id) {
- this.id = id;
- }
- Uo2 u = new Uo2();
- u.setId(1);
- u.setName("LiLei");
- u.setAge(25);
- u.setDate(new Date());
- u.setSex("男");
- System.out.println(JSON.toJSONString(u));
-
- String jsonStr = "{\"id\":10,\"age\":25,\"name\":\"LiLei\",\"sex\":\"男\",\"endDate\":1451984687404}";
- Uo2 uo = JSON.parseObject(jsonStr, Uo2.class);
- System.out.println(uo.toString());
json
- {"age":25,"name":"LiLei","sex":"男","startDate":1451985134688}
- User [id=0, name=LiLei, age=25, sex=男, date=Tue Jan 05 17:04:47 CST 2016]
this
咱們再來看看下面的代碼看看結果跟上面作個比較:spa
- String jsonStr = "{\"id\":10,\"age\":25,\"name\":\"LiLei\",\"sex\":\"男\",\"startDate\":1451984687404}";
- Uo2 uo = JSON.parseObject(jsonStr, Uo2.class);
- System.out.println(uo.toString());
ip
- User [id=0, name=LiLei, age=25, sex=男, date=null]
get