package org.zsl.testmybatis; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.synyi.edc.util.XmlUtils; public class Test { public static void main(String[] args) { // TODO Auto-generated method stub Map map = new HashMap(); map.put("groupType", "年龄段"); map.put("minValue", "0"); map.put("maxValue", "100"); map.put("interval", "10"); String str = JSONObject.toJSON(map).toString(); System.out.println(str); } }