public class JSONParseTest extends TestCase {
public void test_0() throws Exception {
JSONObject jsonObject = new JSONObject();
jsonObject.put("scheduleAlarmRules", new ArrayList());
String jsonString = jsonObject.toJSONString();
String text = "{\"scheduleAlarmRules\":[]}";
Object jsonValue = JSON.parse(text);
System.out.println(jsonValue);
}