1.commons-httpclient 简洁快速模拟HTTP请求
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
(1)
import java.io.IOException;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.methods.PostMethod;
/**
* Hello world!
*
*/
public class App {
private static final HttpClient client = new HttpClient();
public static void main(String[] args) throws HttpException, IOException, InterruptedException {
for (int i = 0; i < 2000; i++) {
PostMethod method = new PostMethod("http://open.kaduoyun.com/api/v1.0/sendMsg.htm");
//http://localhost:8080/vs-rest/rs/user/register/gaozz/jerrison/gaozhenzhai@126.com/123456/test/0/30/addrtest/18600635193/touxiang/1100
method.getParams().setContentCharset("UTF-8");
method.addParameter("appkey", "38F325796F584656946801146D177C18");
method.addParameter("appsecret", "4451E66CDBAE8C01FC1B12D70CDFA077");
method.addParameter("title", "测试标题");
method.addParameter("content", "测试内容"+i);
//method.addParameter("clientid", "");
client.executeMethod(method);
System.out.println(method.getResponseBodyAsString()+i);
Thread.sleep(10);
}
}
}
(2)
import java.io.IOException;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.methods.PostMethod;
/**
* Hello world!
*
*/
public class UserTestApp {
private static final HttpClient client = new HttpClient();
private static final String urlStr = "http://192.168.0.117:8080";
//private static final String urlStr = "http://192.168.0.110:8080/vs-rest";
public static void main(String[] args) throws HttpException, IOException, InterruptedException {
//testLogin();
//testSearchCity();
//testRegister();
testFindPassword();
//testVerifyUnique();
//testUpdateUserInfo();
//testSearch();
//testSchoolCompetitor();
//testSignUp();
//testVote();
}
public static void testRegister() throws HttpException, IOException, InterruptedException{
PostMethod method = new PostMethod(urlStr+"/rs/user/register");
//http://localhost:8080/vs-rest/rs/user/register/gaozz/jerrison/gaozhenzhai@126.com/123456/test/0/30/addrtest/18600635193/touxiang/1100
method.getParams().setContentCharset("UTF-8");
method.addParameter("userName", "gaozz");
method.addParameter("nickName", "jerrison11");
method.addParameter("email", "gaozhenzhai11@126.com");
method.addParameter("password", "123456");
method.addParameter("equipmentId", "test818");
method.addParameter("sex", "0");
method.addParameter("age", "30");
method.addParameter("addr", "addrtest");
method.addParameter("phone", "18600635193");
method.addParameter("avatar", "touxiang");
method.addParameter("birthday", "1100");
client.executeMethod(method);
System.out.println(method.getResponseBodyAsString());
Thread.sleep(10);
}
public static void testLogin() throws HttpException, IOException, InterruptedException{
PostMethod method = new PostMethod(urlStr+"/rs/user/login");
method.getParams().setContentCharset("UTF-8");
method.addParameter("userName", "gaozz");
method.addParameter("password", "654321");
client.executeMethod(method);
System.out.println(method.getResponseBodyAsString());
Thread.sleep(10);
}
public static void testFindPassword() throws HttpException, IOException, InterruptedException{
PostMethod method = new PostMethod(urlStr+"/rs/user/findPassword");
method.getParams().setContentCharset("UTF-8");
method.addParameter("userName", "slaton");
method.addParameter("verifyCode", "060468");
method.addParameter("newPassword", "12345678");
client.executeMethod(method);
System.out.println(method.getResponseBodyAsString());
Thread.sleep(10);
}
}
2.apache org.apache.httpcomponents httpclient
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
</dependency>
importorg.apache.http.HttpEntity; import org.apache.http.NameValuePair; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.params.CoreConnectionPNames; import org.apache.http.util.EntityUtils;
new version 4.5:
public static String httpPostUrlForPdf(String url) { // 设置HTTP请求参数 String result = null; CloseableHttpClient client = HttpClients.createDefault(); HttpGet httpGet = new HttpGet(url); try { CloseableHttpResponse response = client.execute(httpGet); result = EntityUtils.toString(response.getEntity(), "UTF-8"); } catch (ClientProtocolException e) { logger.error("http接口调用异常:url is::" + url, e); return null; } catch (IOException e) { logger.error("http接口调用异常:url is::" + url, e); return null; } finally { try { client.close(); } catch (IOException e) { logger.error("http接口调用异常:url is::" + url, e); } } return result; }
old version 4.3:
public static String httpPost(String url, String jsonString) { // 设置HTTP请求参数 String result = null; HttpClient httpClient = new DefaultHttpClient(); HttpPost httpPost = new HttpPost(url); try { httpClient.getParams().setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 10000);//设置请求超时时间 10s StringEntity entity = new StringEntity(jsonString); entity.setContentEncoding("UTF-8"); entity.setContentType("application/json"); httpPost.setEntity(entity); HttpEntity resEntity = httpClient.execute(httpPost).getEntity(); result = EntityUtils.toString(resEntity, "UTF-8"); } catch (Exception e) { logger.error("http接口调用异常:url is::" + url, e); return null; } finally { httpClient.getConnectionManager().shutdown(); } return result; }
调用:
ReqChedaiParamDataVo dataVo = new ReqChedaiParamDataVo(); dataVo.setIdCard(idCard); Map<String, Object> map = new HashMap<String, Object>(); map.put("content", dataVo); String jsonString = JSONObject.toJSONString(map); LOGGER.info("请求对象json::" + jsonString); String response = HttpUtils.httpPost(queryMemberInfoHttpUrl, jsonString); LOGGER.info("响应字符串::" + response);
Another:
HttpPost httpPost22 = new HttpPost("http://test.com/abc"); List<NameValuePair> nvps = new ArrayList<NameValuePair>(); nvps.add(new BasicNameValuePair("username", "vip")); nvps.add(new BasicNameValuePair("password", "secret")); try { httpPost22.setEntity(new UrlEncodedFormEntity(nvps)); httpClient.execute(httpPost); } catch (IOException e) { e.printStackTrace(); }
相关推荐
在Java中,可以通过多种方式实现HTTP请求,例如使用`java.net.URL`和`java.net.HttpURLConnection`类,或者使用Apache HttpClient库。这个项目源代码可能包含了使用这些方法之一的例子,展示如何发送GET、POST以及...
虽然上面的代码片段中并没有直接使用Java来模拟HTTP POST请求,但在实际应用中,通常会采用以下几种方式: - **使用HttpURLConnection类**:这是最基础的方法,通过创建一个`HttpURLConnection`对象,设置请求方法...
在Java Spring MVC框架中,Controller是处理HTTP请求的核心组件,它负责接收客户端发送的数据并进行业务逻辑处理。本文将详细讲解在Spring Controller中获取请求参数的六种常见方法。 1. **直接作为方法参数** 当...
在Spring MVC框架中,处理HTTP请求是开发Web应用的核心任务之一。本教程将详细解析Spring MVC后台接收请求参数的多种方式。我们将重点关注GET和POST请求,这两种请求方式在Web开发中最为常见。以下是对每种方式的...
在IT领域,尤其是在Java开发中,通过HTTP协议发送XML报文是一种常见的数据交换方式,尤其在与Web服务交互时。本文将深入解析如何利用Java语言实现HTTP请求,并发送XML格式的数据,同时也会涵盖相关的概念、代码解读...
Java实现HTTP PROXY是一个常见的需求,特别是在开发网络应用或者测试环境中,我们可能需要通过代理服务器转发HTTP请求。本文将深入探讨如何使用Java编程语言来创建一个HTTP代理服务器,并且会涉及相关的源码分析。 ...
在Java编程中,模拟HTTP请求是一项常见的任务,尤其在网页抓取、自动化测试以及网络数据获取等场景下。本项目涉及的关键技术点是利用HTTP客户端库进行登录操作,并抓取海投网的数据,随后将这些信息存储到MySQL...
在Java编程中,HTTPS(Hypertext Transfer Protocol Secure)是一种用于在互联网上安全传输数据的协议,它基于HTTP,但提供了额外的安全性层,通过SSL/TLS(Secure Sockets Layer/Transport Layer Security)来加密...
总结来说,处理HTTP请求的Header和Body是Java Web开发中的基础操作。通过`HttpServletRequest`接口提供的方法,我们可以轻松地获取并处理这些信息。在实际应用中,可能还需要对数据进行进一步的解析和处理,例如,...
本文将详细探讨Spring MVC中常见的三种请求映射方式:基于注解的映射、基于XML配置的映射以及基于Java配置的映射。我们将深入理解每种方式的工作原理,并通过实例来展示其用法。 ### 1. 基于注解的映射 **注解驱动...
Servlet 是一种基于 Java 语言的 Web 组件,它可以处理 HTTP 请求,并返回响应结果。Servlet 与 CGI 的主要区别在于,Servlet 是基于 Java 语言的,而 CGI 是基于 C 语言的。 1.6. Servlet 的主要任务 Servlet 的...
总结来说,Java发送JSON格式的HTTP POST请求涉及以下几个关键步骤: 1. 引入Apache HttpClient和JSON处理库。 2. 创建HTTP客户端并构建POST请求。 3. 设置请求头,表明请求内容为JSON格式。 4. 序列化Java对象为JSON...
本文将深入探讨在Java环境中调用WebService的五种主要方式:Axis、CXF、HttpClient、MyEclipse反向生成以及XFire。 1. Axis:Apache Axis是最早且广泛使用的SOAP库,用于创建和消费Web服务。使用Axis调用WebService...
本篇文章将详细介绍Java中调用WebService的几种常见方法,并提供相应的源代码示例。 1. **SOAP(Simple Object Access Protocol)调用**: SOAP是WebService的主要通信协议,基于XML格式的数据交换。在Java中,...
本文将详细介绍Android开发中常用的几种网络请求方式,并以GET和POST请求为例进行具体说明。 #### 一、Android网络请求的基础概念 在开始介绍具体的请求方式之前,我们先来了解一些基本概念。 - **HTTP...
在这个"Facebook API 的 Java 封装请求处理组件 RestFB.7z"压缩包中,包含了 RestFB 库的源代码和其他相关资源,使开发者能够高效地构建与 Facebook 平台集成的应用程序。 首先,让我们深入了解 RestFB 的核心功能...
在Java编程中,HTTPURLConnection是Java标准库提供的一种用于处理HTTP连接的类,它允许我们发送HTTP请求并接收响应。然而,HTTP协议本身是无状态的,这意味着每次请求都是独立的,不会记住之前的交互,这对于需要...
上述`sendRequest`方法封装了基本的HTTP GET请求,可以根据实际需求进行扩展,如处理POST请求、设置请求参数、处理响应状态码等。对于POST请求,可以通过`connection.setDoOutput(true)`开启输出流,并使用`...
结合上述知识点,我们可以总结出以下几点: 1. **多线程管理**:合理使用线程池可以有效提高系统的响应性和资源利用率。 2. **异步编程模型**:通过Future和Callable可以实现异步任务的提交和结果获取,进一步提高...
本篇文章将深入解析给定文件中的几种请求情况,包括GET与POST请求、图片请求,以及它们在Servlet环境下的具体应用。 ### GET请求解析 #### 一般格式与特点 GET请求通常用于从服务器检索数据,数据会附在URL之后,...