package api.jisuapi.telrecharge; import api.util.HttpUtil; import net.sf.json.JSONArray; import net.sf.json.JSONObject; public class Goods { public static final String APPKEY = "your_appkey_here";// 你的appkey public static final String URL = "https://api.jisuapi.com/telrecharge/goods"; public static final int teltype = 0571 - 56565366; public static final String tel = "1"; public static void Get() { String result = null; String url = URL + "?appkey=" + APPKEY + "&teltype=" + teltype + "&tel=" + tel; 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 productid = obj.getString("productid"); String province = obj.getString("province"); String city = obj.getString("city"); String name = obj.getString("name"); String price = obj.getString("price"); String amount = obj.getString("amount"); String rechargetype = obj.getString("rechargetype"); System.out.println(productid + " " + province + " " + city + " " + name + " " + price + " " + amount + " " + rechargetype); } } } catch (Exception e) { e.printStackTrace(); } } }
Java HTTP请求通用函数
Java Android请求通用函数
© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875