1
2
3
4
5
6
7
8
9
10
11
12
  | package com.example.pickerviewlibrary.picker.util; 
 |    
 |  import com.google.gson.Gson; 
 |    
 |  public class JsonArrayUtil { 
 |    
 |      public static String toJson(Object obj) { 
 |              Gson gson = new Gson(); 
 |              String obj2 = gson.toJson(obj); 
 |              return obj2; 
 |      } 
 |  } 
 |  
  |