摘要:
JSON: 1. 概念: JavaScript Object Notation JavaScript对象表示法 Person p = new Person(); p.setName("张三"); p.setAge(23); 》 var p = {"name":"张三","age":23,"gende 阅读全文
摘要:
首先,定义一个实体类Person: import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; public class Person { private String name; private int ag 阅读全文