码迷,mamicode.com
首页 > 编程语言 > 详细

java后台发起get请求获取响应数据学习记录: 话不多说直接上代码

时间:2019-08-25 17:51:33      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:res   tin   null   connect   and   jmh   请求   chrome   学习记录   

package com.jl.chromeTest;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.nio.charset.StandardCharsets;

/**
* get请求测试
* @author liujilong
* @since 2019-7-18 10:26:49
*/
public class Test {

@org.junit.Test
public void test() throws Exception{
String result = get("http://www.baidu.com");
System.out.println("result====="+result);
}

/**
* get请求
* @param url
* @return
* @throws Exception
*/
public String get(String url) throws Exception {
String content = null;
URLConnection urlConnection = new URL(url).openConnection();
HttpURLConnection connection = (HttpURLConnection) urlConnection;
connection.setRequestMethod("GET");
//连接
connection.connect(http://www.amjmh.com/v/);
//得到响应码
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader
(connection.getInputStream(), StandardCharsets.UTF_8));
StringBuilder bs = new StringBuilder();
String l;
while ((l = bufferedReader.readLine()) != null) {
bs.append(l).append("\n");
}
content = bs.toString();
}
return content;
}
}

————————————————

java后台发起get请求获取响应数据学习记录: 话不多说直接上代码

标签:res   tin   null   connect   and   jmh   请求   chrome   学习记录   

原文地址:https://www.cnblogs.com/hyhy904/p/11408520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!