Java基础-http post带有文件、参数的请求

pom.xml:

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.3.6</version>
</dependency>
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpmime</artifactId>
    <version>4.5</version>
</dependency>
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpcore</artifactId>
    <version>4.4.1</version>
</dependency>

发送端:

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URLDecoder;
import java.nio.charset.Charset;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.impl.client.HttpClientBuilder;

/**
 * <dependency> 
	 * <groupId>org.apache.httpcomponents</groupId> 
	 * <artifactId>httpclient</artifactId> 
	 * <version>4.3.6</version> 
 * </dependency> 
 * <dependency> 
	 * <groupId>org.apache.httpcomponents</groupId> 
	 * <artifactId>httpmime</artifactId> 
	 * <version>4.5</version> 
 * </dependency> 
 * <dependency> 
	 * <groupId>org.apache.httpcomponents</groupId> 
	 * <artifactId>httpcore</artifactId> 
	 * <version>4.4.1</version> 
 * </dependency>
 */
public class PostTest {
	public static void main(String[] args) throws ClientProtocolException, IOException {
		HttpClient httpClient = HttpClientBuilder.create().build();
		HttpPost httpPost = new HttpPost("http://10.48.47.131:9091/toolCenter/attach");// 请求地址
		MultipartEntityBuilder meb = MultipartEntityBuilder.create();
		ContentType strContent = ContentType.create("application/zip", Charset.forName("UTF-8"));
		meb.addBinaryBody("uploadfile", new File("D://文件.zip"));// 文件路径
		meb.addTextBody("fileName", "文件.zip", strContent);// 文件名
		meb.addTextBody("sendMailName", "主标题", strContent);
		meb.addTextBody("mailSubject", "子标题", strContent);
		meb.addTextBody("receiveMail", "anyf@kunyitech.com", strContent);//多个以;分割
		meb.addTextBody("mailContent", "邮件内容", strContent);
		HttpEntity httpEntity = meb.build();
		httpPost.setEntity(httpEntity);
		try {
			StringBuilder sb = new StringBuilder();
			String line;
			HttpResponse httpResponse = httpClient.execute(httpPost);
			InputStream inputStream = httpResponse.getEntity().getContent();
			BufferedReader br = new BufferedReader(new InputStreamReader(inputStream,"UTF-8"));
			while ((line = br.readLine()) != null) {
				sb.append(line);
			}
			String rspMsg = URLDecoder.decode(sb.toString(),"UTF-8");
			System.err.println(rspMsg); // {"resp_desc":"SUCCESS","resp_code":"0000"}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

接收端:

@RequestMapping(value = "/emailattach", produces = "application/json; charset=utf-8")
@ResponseBody
public String email(
	@RequestParam("uploadfile")MultipartFile uploadfile,
	@RequestParam("param1")String param1,
	@RequestParam("param2")String param2
) {
	log.info("receive_param1-{},param2:{}",param1,param2);
	try {
		String filePath = "/app/" + filename;
		File file = new File(filePath);
		uploadfile.transferTo(file );
	} catch (Exception e) {
		log.error(e.getMessage(), e);
	}
	return "";
}
  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小安灬

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值