左晓为主开发手持机充值管理机
zuoxiao
2023-12-19 72c257c004d520851205c0cf0482a367c80cae76
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;
    }
}