JSON
Alworm
一个行走在Code世界的旅行者
展开
-
JSON格式转换为Java对象
(一)转换为Java对象代码@Test public void test04() throws IOException { String json ="{\"gender\":\"男\",\"age\":23,\"username\":\"ALworm\"}"; ObjectMapper mapper = new ObjectMapper(); ...原创 2019-10-25 18:58:47 · 1705 阅读 · 0 评论 -
Java 对象转换为JSON格式
(一)基本对象转换代码: @Test public void test01() throws Exception { Person p = new Person(); p.setAge(10); p.setGender("男"); p.setUsername("Alworm"); p.setBirthday...原创 2019-10-25 18:50:42 · 1058 阅读 · 0 评论