首页 邮编查询 邮编查询示例代码 地址查邮编[Java]

地址查邮编示例代码Java

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

地址查邮编

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package api.jisuapi.zipcode;
 
import java.net.URLEncoder;
 
import api.util.HttpUtil;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
public class Addr2code {
 
    public static final String APPKEY = "your_appkey_here";// 你的appkey
    public static final String URL = "https://api.jisuapi.com/zipcode/addr2code";
    public static final String zipcode = "310012";
    public static final String address = "杭州师范大学";// utf-8
    public static final int areaid = 382;
 
    public static void Get() throws Exception {
        String result = null;
        String url = URL + "?appkey=" + APPKEY + "&zipcode=" + zipcode + "&address="
                + URLEncoder.encode(address, "utf-8") + "&areaid=" + areaid;
 
        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 province = obj.getString("province");
                    String city = obj.getString("city");
                    String town = obj.getString("town");
                    String address = obj.getString("address");
                    String zipcode = obj.getString("zipcode");
                    System.out.println(province + " " + city + " " + town + " " + address + " " + zipcode);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}