JAVA 访问直接返回json的URL,并解析

 /**
     * 根据URL请求json数据
     * @return //parm:请求的url链接  返回的是json字符串
     */
    public static String getURLContent() {

        SysSetup sysSetup = (SysSetup) ResourceManage.getContext("sysSetup");
        String urlStr = (String) sysSetup.getParameter("WEATHER_ADDRESS");//获取天气数据接口地址
        //String urlStr = "http://www.pm25.in/api/querys/aqi_details.json?city=zhuhai&token=CkFW1K";

        //请求的url
        URL url = null;

        //建立的http链接
        HttpURLConnection httpConn = null;

        //请求的输入流
        BufferedReader in = null;

        //输入流的缓冲
        StringBuffer sb = new StringBuffer();

        try{
            url = new URL(urlStr);

            in = new BufferedReader(new InputStreamReader(url.openStream(),"UTF-8") );

            String str = null;

            //一行一行进行读入
            while((str = in.readLine()) != null) {
                sb.append( str );
            }
        } catch (Exception ex) {
            System.out.println(ex.toString());
        } finally{
            try{
                if(in!=null) {
                    in.close(); //关闭流
                }
            }catch(IOException ex) {
                System.out.println(ex.toString());
            }
        }
        String result =sb.toString();
        return result;
    }


    public static void main(String[] args){
        getURLContent();
    }

解析后可以得到URL返回的json字符串,如下图

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值