IP查询API免费接口,IP查询API接口付费定制package api.binstd.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.binstd.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(); } } }
阅读剩余 0%
本站所有文章资讯、展示的图片素材等内容均为注册用户上传(部分报媒/平媒内容转载自网络合作媒体),仅供学习参考。 用户通过本站上传、发布的任何内容的知识产权归属用户或原始著作权人所有。如有侵犯您的版权,请联系我们反馈本站将在三个工作日内改正。