java发送post请求,使用multipart/form-data的方式传递参数,可实现服务器间文件上传功能(转)
- /**
- * 测试上传图片
- *
- */
- public static void testUploadImage(){
- String url = "http://xxxtest/Api/testUploadModelBaking";
- String fileName = "e:/username/textures/antimap_0017.png";
- Map<String, String> textMap = new HashMap<String, String>();
- //可以设置多个input的name,value
- textMap.put("name", "testname");
- textMap.put("type", "2");
- //设置file的name,路径
- Map<String, String> fileMap = new HashMap<String, String>();
- fileMap.put("upfile", fileName);
- String contentType = "";//image/png
- String ret = formUpload(url, textMap, fileMap,contentType);
- System.out.println(ret);
- //{"status":"0","message":"add succeed","baking_url":"group1\/M00\/00\/A8\/CgACJ1Zo-LuAN207AAQA3nlGY5k151.png"}
- }
- /**
- * 上传图片
- * @param urlStr
- * @param textMap
- * @param fileMap
- * @param contentType 没有传入文件类型默认采用application/octet-stream
- * contentType非空采用filename匹配默认的图片类型
- * @return 返回response数据
- */
- @SuppressWarnings("rawtypes")
- public static String formUpload(String urlStr, Map<String, String> textMap,
- Map<String, String> fileMap,String contentType) {
- String res = "";
- HttpURLConnection conn = null;
- // boundary就是request头和上传文件内容的分隔符
- String BOUNDARY = "---------------------------123821742118716";
- try {
- URL url = new URL(urlStr);
- conn = (HttpURLConnection) url.openConnection();
- conn.setConnectTimeout(5000);
- conn.setReadTimeout(30000);
- conn.setDoOutput(true);
- conn.setDoInput(true);
- conn.setUseCaches(false);
- conn.setRequestMethod("POST");
- conn.setRequestProperty("Connection", "Keep-Alive");
- // conn.setRequestProperty("User-Agent","Mozilla/5.0 (Windows; U; Windows NT 6.1; zh-CN; rv:1.9.2.6)");
- conn.setRequestProperty("Content-Type","multipart/form-data; boundary=" + BOUNDARY);
- OutputStream out = new DataOutputStream(conn.getOutputStream());
- // text
- if (textMap != null) {
- StringBuffer strBuf = new StringBuffer();
- Iterator iter = textMap.entrySet().iterator();
- while (iter.hasNext()) {
- Map.Entry entry = (Map.Entry) iter.next();
- String inputName = (String) entry.getKey();
- String inputValue = (String) entry.getValue();
- if (inputValue == null) {
- continue;
- }
- strBuf.append("\r\n").append("--").append(BOUNDARY).append("\r\n");
- strBuf.append("Content-Disposition: form-data; name=\"" + inputName + "\"\r\n\r\n");
- strBuf.append(inputValue);
- }
- out.write(strBuf.toString().getBytes());
- }
- // file
- if (fileMap != null) {
- Iterator iter = fileMap.entrySet().iterator();
- while (iter.hasNext()) {
- Map.Entry entry = (Map.Entry) iter.next();
- String inputName = (String) entry.getKey();
- String inputValue = (String) entry.getValue();
- if (inputValue == null) {
- continue;
- }
- File file = new File(inputValue);
- String filename = file.getName();
- //没有传入文件类型,同时根据文件获取不到类型,默认采用application/octet-stream
- contentType = new MimetypesFileTypeMap().getContentType(file);
- //contentType非空采用filename匹配默认的图片类型
- if(!"".equals(contentType)){
- if (filename.endsWith(".png")) {
- contentType = "image/png";
- }else if (filename.endsWith(".jpg") || filename.endsWith(".jpeg") || filename.endsWith(".jpe")) {
- contentType = "image/jpeg";
- }else if (filename.endsWith(".gif")) {
- contentType = "image/gif";
- }else if (filename.endsWith(".ico")) {
- contentType = "image/image/x-icon";
- }
- }
- if (contentType == null || "".equals(contentType)) {
- contentType = "application/octet-stream";
- }
- StringBuffer strBuf = new StringBuffer();
- strBuf.append("\r\n").append("--").append(BOUNDARY).append("\r\n");
- strBuf.append("Content-Disposition: form-data; name=\"" + inputName + "\"; filename=\"" + filename + "\"\r\n");
- strBuf.append("Content-Type:" + contentType + "\r\n\r\n");
- out.write(strBuf.toString().getBytes());
- DataInputStream in = new DataInputStream(new FileInputStream(file));
- int bytes = 0;
- byte[] bufferOut = new byte[1024];
- while ((bytes = in.read(bufferOut)) != -1) {
- out.write(bufferOut, 0, bytes);
- }
- in.close();
- }
- }
- byte[] endData = ("\r\n--" + BOUNDARY + "--\r\n").getBytes();
- out.write(endData);
- out.flush();
- out.close();
- // 读取返回数据
- StringBuffer strBuf = new StringBuffer();
- BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
- String line = null;
- while ((line = reader.readLine()) != null) {
- strBuf.append(line).append("\n");
- }
- res = strBuf.toString();
- reader.close();
- reader = null;
- } catch (Exception e) {
- System.out.println("发送POST请求出错。" + urlStr);
- e.printStackTrace();
- } finally {
- if (conn != null) {
- conn.disconnect();
- conn = null;
- }
- }
- return res;
- }
本文代码学习自:https://blog.csdn.net/Icywind1/article/details/85628099 ,csdn的代码格式让人抓狂,特复制一份。
java发送post请求,使用multipart/form-data的方式传递参数,可实现服务器间文件上传功能(转)的更多相关文章
- 【转】HTTP请求中的form data和request payload的区别
jQuery的ajax方法和post方法分别发送请求,在后台Servlet进行处理时结果是不一样的,比如用$.ajax方法发送请求时(data参数是一个JSON.stringify()处理后的字符串, ...
- [转]HTTP请求中的form data和request payload的区别
本文转自:http://www.cnblogs.com/btgyoyo/p/6141480.html jQuery的ajax方法和post方法分别发送请求,在后台Servlet进行处理时结果是不一样的 ...
- [整理]Ajax Post请求下的Form Data和Request Payload
Ajax Post请求下的Form Data和Request Payload 通常情况下,我们通过Post提交表单,以键值对的形式存储在请求体中.此时的reqeuest headers会有Conten ...
- HTTP请求中的form data和request payload的区别
HTML <form> 标签的 enctype 属性 在下面的例子中,表单数据会在未编码的情况下进行发送: <form action="form_action.asp&qu ...
- HTTP 请求中的 Form Data 与 Request Payload 的区别
HTTP 请求中的 Form Data 与 Request Payload 的区别 前端开发中经常会用到 AJAX 发送异步请求,对于 POST 类型的请求会附带请求数据.而常用的两种传参方式为:Fo ...
- Java发送Http请求并获取状态码
通过Java发送url请求,查看该url是否有效,这时我们可以通过获取状态码来判断. try { URL u = new URL("http://10.1.2.8:8080/fqz/page ...
- 通过java发送http请求
通常的http请求都是由用户点击某个连接或者按钮来发起的,但是在一些后台的Java程序中需要发送一些get或这post请求,因为不涉及前台页面,该怎么办呢? 下面为大家提供一个Java发送http请求 ...
- Java发送HTTPS请求
前言 上篇文章介绍了 java 发送 http 请求,大家都知道发送http是不安全的 .我也是由于对接了其他企业后总结了一套发送 https的工具.大家网上找方法很多的,但是可不是你粘过来就能用啊, ...
- 使用Java发送Http请求的内容
公司要将自己的产品封装一个WebService平台,所以最近开始学习使用Java发送Http请求的内容.这一块之前用PHP的时候写的也比较多,从用最基本的Socket和使用第三方插件都用过. 学习了J ...
随机推荐
- 第一章 XAML概览
1.1 XAML是什么? XAML是eXtensible Application Markup Language的英文缩写,相应的中文名称为可扩展应用程序标记语言.也就是说在开发一个应用程序时,我们可 ...
- python简明教程代码
#!user/bin/env python #-*- coding:utf-8 -*- # code001 print('hello world') (only one quotation mark, ...
- 用c语言创建双向环形链表
作为一个C开发人员,无论在求职笔试题中,还是在工程项目中,都会遇到用c语言创建双向环形链表.这个也是理解和使用c指针的一项基本功. #include<...>//头文件省略 typedef ...
- 【java】之算法复杂度o(1), o(n), o(logn), o(nlogn)
在描述算法复杂度时,经常用到o(1), o(n), o(logn), o(nlogn)来表示对应算法的时间复杂度, 这里进行归纳一下它们代表的含义: 这是算法的时空复杂度的表示.不仅仅用于表示时间复杂 ...
- rabbitMQ 在 windows 64位环境下无法启动(提示乱码)的解决方法
执行start命令时,提示乱码 解决方法: Set the environment variable “RABBITMQ_BASE” to “c:\rabbitmq”, uninstall the s ...
- Kong(V1.0.2)Network & Firewall
介绍 在本节中,您将找到关于Kong推荐的网络和防火墙设置的摘要.PortsKong使用多个连接用于不同的目的. 代理 管理api Proxy 代理端口是Kong接收传入流量的地方.有两个端口具有以下 ...
- sql 存储过程和触发器
mysql----------------------------------------------------------------------------------------------- ...
- TensorFlow的介绍和安装
TensorFlow概要 由google Brain开源,设计初衷是加速机器学习的研究,2015年11月在GitHub上开源,2016年4月分布式版本,2017年发布了1.0版本,趋于稳定. Tens ...
- nil/Nil/NULL/NSNull
nil/Nil/NULL/NSNull的区别 一个简单的小例子: NSObject *obj = nil; NSLog(@"%@",obj); =>null NSObject ...
- TMS320F28335系列芯片地址映射表
本表非官方资料,纯属个人学习笔记,欢迎补充 本表非官方资料,纯属个人学习笔记,欢迎补充 本表非官方资料,纯属个人学习笔记,欢迎补充 开始地址 长度 名称 物理器件 程序 数据 只读 Protected ...