java 实现http post,Java实现HTTP POST方式

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 17:58   1958   0

Java实现HTTP POST方式:

HttpPostUtil.java

import java.nio.charset.Charset;

import lombok.extern.slf4j.Slf4j;

import org.apache.http.client.fluent.Content;

import org.apache.http.client.fluent.Form;

import org.apache.http.client.fluent.Request;

import org.apache.http.entity.ContentType;

import org.springframework.stereotype.Service;

@Service("httpPostUtil")

@Slf4j

public class HttpPostUtil {

/**

* 通过Form方式提交HTTP POST

*/

public String doPostForm(String url, String jsonText) {

try {

Content resp = Request

.Post(url)

.bodyForm(

Form.form()

.add("jsonText", jsonText)

.build(),

Charset.forName("UTF-8")).execute().returnContent();

String respString = resp.asString();

return respString;

} catch (Exception e) {

log.error("edm-do-post-form fail: {}", e);

return "";

}

}

/**

* 通过FormString方式提交HTTP POST

*/

public String doPostFormString(String url, String jsonText) {

try {

Content resp = Request.Post(url)

.bodyString(jsonText, ContentType.APPLICATION_JSON)

.elementCharset("UTF-8").execute().returnContent();

String respString = resp.asString();

return respString;

} catch (Exception e) {

log.error("edm-do-post-formstring fail: {}", e);

return "";

}

}

}

其中传入的

jsonText可以通过下面方法来实现:

String jsonText = com.alibaba.fastjson.JSON.toJSONString(pushClueRecords);

pushClueRecords为对象。

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP