码迷,mamicode.com
首页 > Web开发 > 详细

object to 字符串json

时间:2016-10-30 23:48:56      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:object   tgs   pack   log   serialize   style   字符   code   ati   

 1 package com.beijxing.TestMain;
 2 
 3 import com.beijxing.entity.Student;
 4 import com.google.gson.Gson;
 5 import com.google.gson.annotations.SerializedName;
 6 
 7 /** 
 8 * 
 9 * @author 作者 : ywp
10 * @version 创建时间:2016年10月30日 下午9:21:33 
11 */
12 public class TestGson1 {
13     public static void main(String[] args) {
14         testGson();
15     }
16     public static void testGson(){
17         Student student = new Student();
18         student.setId(1);
19         student.setName("杨文培");
20         student.setSex("男");
21         //student.setAge(23);
22         student.setBirthday("1993-01-23");
23         Gson gson = new Gson();
24         System.out.println(gson.toJson(student));
25     }
26 }

 

object to 字符串json

标签:object   tgs   pack   log   serialize   style   字符   code   ati   

原文地址:http://www.cnblogs.com/yangly/p/6014174.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!