java后台发起get请求获取响应数据

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

java后台发起get请求获取响应数据

  2021-04-02 我要评论

学习记录:

话不多说直接上代码:

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;
 }
}

结果如图:

您可能感兴趣的文章:

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们