package api.jisuapi.chinesecode; import java.net.URLEncoder; import api.util.HttpUtil; import net.sf.json.JSONArray; import net.sf.json.JSONObject; public class Code { public static final String APPKEY = "your_appkey_here";// 你的appkey public static final String URL = "https://api.jisuapi.com/chinesecode/code"; public static final String chinese = "极速数据";//utf-8 public static void Get() throws Exception { String result = null; String url = URL + "?appkey=" + APPKEY + "&chinese=" + URLEncoder.encode(chinese,"utf-8"); try { result = HttpUtil.sendGet(url, "utf-8"); JSONObject json = JSONObject.fromObject(result); if (json.getInt("status") != 0) { System.out.println(json.getString("msg")); } else { JSONArray resultarr = json.optJSONArray("result"); for (int i = 0; i < resultarr.size(); i++) { JSONObject obj = (JSONObject) resultarr.opt(i); String character = obj.getString("character"); String code = obj.getString("code"); System.out.println(character + " " + code); } } } catch (Exception e) { e.printStackTrace(); } } }