首页 固话宽带充值 固话宽带充值示例代码 按号码查询固话商品[Java]

按号码查询固话商品示例代码[Java]

作者:xiezhongpian 阅读数:863 上传时间:2017-05-09

按号码查询固话商品

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();
		}
	}
}