Java发送文件

public static void main(String[] args) {
		DataOutputStream out = null;
		final String newLine = "\r\n";
		final String prefix = "--";
		try {
			String url1=			"";
			URL url = new URL(url1);
			HttpURLConnection conn = (HttpURLConnection)url.openConnection();

			String BOUNDARY = "-------7da2e536604c8";
			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);

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

			// 添加参数file
			File file = new File("文件地址");
			StringBuilder sb1 = new StringBuilder();
			sb1.append(prefix);
			sb1.append(BOUNDARY);
			sb1.append(newLine);
			sb1.append("Content-Disposition: form-data;name=\"file\";filename=\"" + file.getName() + "\"" + newLine);
			sb1.append("Content-Type:application/octet-stream");
			sb1.append(newLine);
			sb1.append(newLine);
			out.write(sb1.toString().getBytes());
			DataInputStream in = new DataInputStream(new FileInputStream(file));
			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();

		// 添加参数sysName
			StringBuilder sb = new StringBuilder();
			sb.append(prefix);
			sb.append(BOUNDARY);
			sb.append(newLine);
			sb.append("Content-Disposition: form-data;name=\"date\"");
			sb.append(newLine);
			sb.append(newLine);
			sb.append("2018-09-09");
			out.write(sb.toString().getBytes());

			 //添加参数returnImage
			StringBuilder sb2 = new StringBuilder();
			sb2.append(newLine);
			sb2.append(prefix);
			sb2.append(BOUNDARY);
			sb2.append(newLine);
			sb2.append("Content-Disposition: form-data;name=\"cityId\"");
			sb2.append(newLine);
			sb2.append(newLine);
			sb2.append("110000");
			out.write(sb2.toString().getBytes());

			StringBuilder sb3 = new StringBuilder();
			sb3.append(newLine);
			sb3.append(prefix);
			sb3.append(BOUNDARY);
			sb3.append(newLine);
			sb3.append("Content-Disposition: form-data;name=\"cityName\"");
			sb3.append(newLine);
			sb3.append(newLine);
			sb3.append("110000");
			out.write(sb3.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()));
			String line = null;
			while ((line = reader.readLine()) != null) {
				System.out.println(line);
			}

		} catch (Exception e) {
			System.out.println("发送POST请求出现异常!" + e);
			e.printStackTrace();
		}
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值