Here you can find the source of toJSON(Object obj)
public static String toJSON(Object obj)
//package com.java2s; import com.google.gson.Gson; public class Main { public static String toJSON(Object obj) { return new Gson().toJson(obj); }/*from w w w .jav a 2 s. c o m*/ }