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

Posted hyhy904

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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(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请求获取响应数据学习记录: 话不多说直接上代码的主要内容,如果未能解决你的问题,请参考以下文章

爬虫,记录第一次爬虫

Flask04 后台获取请求数据视图函数返回类型前台接受响应数据

php 中发送get请求,后台无法获取

Java在前台怎么获取后台的数据

python 爬虫 基于requests模块的get请求

js前台页面与后台如何传参