package api.jisuapi.calendar; import java.util.Iterator; import api.util.HttpUtil; import net.sf.json.JSONObject; public class Holiday { public static final String APPKEY = "your_appkey_here";// 你的appkey public static final String URL = "https://api.jisuapi.com/calendar/holiday"; public static void Get() { String result = null; String url = URL + "?appkey=" + APPKEY; try { result = HttpUtil.sendGet(url, "utf-8"); JSONObject json = JSONObject.fromObject(result); if (json.getInt("status") != 0) { System.out.println(json.getString("msg")); } else { JSONObject resultarr = json.optJSONObject("result"); Iterator itt = resultarr.keys(); while (itt.hasNext()) { String key = itt.next().toString(); String value = resultarr.getString(key); System.out.println(key + " " + value); } } } catch (Exception e) { e.printStackTrace(); } } }