附带文件发送http请求

public static String sendPostWithFile(MultipartFile file, String requestUrl,String fileName, Map<String,String> params, Map<String,String> headers) {
		DataOutputStream out = null;
		final String newLine = "\r\n";
		final String prefix = "--";
		try {
			URL url = new URL(requestUrl);
			HttpURLConnection conn = (HttpURLConnection)url.openConnection();

			String BOUNDARY = UUIDGeneratorUtil.getUUID();
			conn.setRequestMethod("POST");
			// 发送POST请求必须设置如下两行
			conn.setDoOutput(true);
			conn.setDoInput(true);
			conn.setUseCaches(false);
			conn.setRequestProperty("connection", "Keep-Alive");
			conn.setRequestProperty("Charsert", "UTF-8");
			conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);
			if(headers!=null && headers.size()>0){
				for (String key : headers.keySet()) {
					conn.setRequestProperty(key,headers.get(key));
				}
			}

			out = new DataOutputStream(conn.getOutputStream());

			// 添加参数file
			StringBuilder sb1 = new StringBuilder();
			sb1.append(prefix);
			sb1.append(BOUNDARY);
			sb1.append(newLine);
			sb1.append("Content-Disposition: form-data;name=\"file\";filename=\"" + fileName + "\"" + newLine);
			sb1.append("Content-Type:application/octet-stream");
			sb1.append(newLine);
			sb1.append(newLine);
			out.write(sb1.toString().getBytes());
			DataInputStream in = new DataInputStream(file.getInputStream());
			byte[] bufferOut = new byte[1024];
			int bytes = 0;
			while ((bytes = in.read(bufferOut)) != -1) {
				out.write(bufferOut, 0, bytes);
			}
			out.write(newLine.getBytes());
			in.close();

			// 添加参数
			if(params!=null && params.size()>0){
				for (String key : params.keySet()) {
					StringBuilder sb = new StringBuilder();
					sb.append(prefix);
					sb.append(BOUNDARY);
					sb.append(newLine);
					sb.append("Content-Disposition: form-data;name="+key);
					sb.append(newLine);
					sb.append(newLine);
					sb.append(params.get(key));
					out.write(sb.toString().getBytes());
				}

			}

			byte[] end_data = ("\r\n--" + BOUNDARY + "--\r\n").getBytes();
			// 写上结尾标识
			out.write(end_data);
			out.flush();
			out.close();

			// 定义BufferedReader输入流来读取URL的响应
			BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
			StringBuffer result = new StringBuffer();
			String line = null;
			while ((line = reader.readLine()) != null) {
				System.out.println(line);
				result.append(line);
			}
            return result.toString();
		} catch (Exception e) {
			System.out.println("发送POST请求出现异常!" + e);
			e.printStackTrace();
		}
		return "";
	}

http请求,附带文件

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值