package api.jisuapi.IP; import api.util.HttpUtil; import net.sf.json.JSONObject; public class Location { public static final String APPKEY = "your_appkey_here";// 你的appkey public static final String URL = "https://api.jisuapi.com/ip/location"; public static final String ip = "122.224.186.100"; public static void Get() { String result = null; String url = URL + "?appkey=" + APPKEY + "&ip=" + ip; 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"); String area = resultarr.getString("area"); String type = resultarr.getString("type"); System.out.println(area + " " + type); } } catch (Exception e) { e.printStackTrace(); } } }