java中怎么通过get请求获取响应数据

java中怎么通过get请求获取响应数据,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

具体内容如下

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();  //得到响应码  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请求获取响应数据的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注行业资讯频道,感谢各位的阅读!