首页 > Web开发 > 详细

http 重要代码

时间:2017-03-12 23:55:18      阅读:312      评论:0      收藏:0      [点我收藏+]
 URL restServiceURL = new URL(sb.toString());// 最终url
System.out.println("finalUrl1----" + sb.toString());
HttpURLConnection httpConnection = (HttpURLConnection) restServiceURL.openConnection();
httpConnection.setRequestMethod("GET");
httpConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
if (httpConnection.getResponseCode() != 200) {
throw new RuntimeException(
"HTTP GET Request Failed with Error code : " + httpConnection.getResponseCode());
}
BufferedReader responseBuffer = new BufferedReader(
new InputStreamReader((httpConnection.getInputStream())));
String output;
System.out.println("Output from Server:  \n");
while ((output = responseBuffer.readLine()) != null) {
result_count = output;
System.out.println(output);
}

http 重要代码

原文:http://www.cnblogs.com/yongyao/p/6539997.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!