java调用远程 接口_Java如何通过URL调用远程接口并读取返回信息?

String ticket = "";//登录凭证

String url_str = "

http://www.sina.com.cn?ticket=";//获取用户认证的帐号URL

String ticket_url = url_str + ticket;

URL url = new URL(ticket_url);

HttpURLConnection connection = (HttpURLConnection) url.openConnection();

connection.connect();

int code = connection.getResponseCode();         if (code == 404) {             throw new Exception("认证无效,找不到此次认证的会话信息!");         }         if (code == 500) {             throw new Exception("认证服务器发生内部错误!");         }         if (code != 200) {             throw new Exception("发生其它错误,认证服务器返回 " + code);         }         InputStream is = connection.getInputStream();         byte[] response = new byte[is.available()];         is.read(response);         is.close();         if (response == null || response.length == 0) {             throw new Exception("认证无效,找不到此次认证的会话信息!");         }         String userId = new String(response, "GBK");         System.out.println(userId);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值