goole json 工具

goole json 工具
public   class  Tester
{   
    
public static void main(String[] args) 
    
{   
        Gson gson 
= new Gson();   
        List
<String> testList = new ArrayList<String>();   
        testList.add(
"first");   
        testList.add(
"second");   
        String listToJson 
= gson.toJson(testList);
        System.out.println(listToJson);        
          
        Map
<String, String> testMap = new HashMap<String, String>();   
        testMap.put(
"id""id.first");   
        testMap.put(
"name","name.second");   
        String mapToJson 
= gson.toJson(testMap);   
        System.out.println(mapToJson);   
        
        listToJson 
= gson.toJson(new Worker());   
        System.out.println(listToJson);       
    }
  
}

你可能感兴趣的:(goole json 工具)