首页 > 编程 > Java > 正文

Java实现HTTP POST方式

2019-11-06 08:54:57
字体:
来源:转载
供稿:网友

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")@Slf4jpublic 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为对象。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表