object to 字符串json

Posted 北极星的小乌龟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了object to 字符串json相关的知识,希望对你有一定的参考价值。

 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的主要内容,如果未能解决你的问题,请参考以下文章

如何将这个 Objective-C 代码片段写入 Swift?

解决移动端报错:Unable to preventDefault inside passive event listener due to target being treated as……(代码片段

[TIA PORTAL][CONVERT] Convert Char Array to DInt...DInt to Char Array..Useful and easy function(代码片段

Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段

[RxJS] Implement RxJS `mergeMap` through inner Observables to Subscribe and Pass Values Through(代码片段

java.lang.NullPointerException: Attempt to invoke virtual method ‘int android.database.sqlite异常(代码片段