/**

* 上传文件到服务器类

*

* @author tom

*/

public class UploadUtil {

private static final String TAG = "uploadFile";

private static final int TIME_OUT = 10 * 1000; // 超时时间

private static final String CHARSET = "utf-8"; // 设置编码

/**

* Android上传文件到服务端

*

* @param file 需要上传的文件

* @param RequestURL 请求的rul

* @return 返回响应的内容

*/

public static String uploadFile(File file, String RequestURL) {

String result = null;

String BOUNDARY = UUID.randomUUID().toString(); // 边界标识 随机生成

String PREFIX = "--", LINE_END = "\r\n";

String CONTENT_TYPE = "multipart/form-data"; // 内容类型

try {

URL url = new URL(RequestURL);

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

conn.setReadTimeout(TIME_OUT);

conn.setConnectTimeout(TIME_OUT);

conn.setDoInput(true); // 允许输入流

conn.setDoOutput(true); // 允许输出流

conn.setUseCaches(false); // 不允许使用缓存

conn.setRequestMethod("POST"); // 请求方式

conn.setRequestProperty("Charset", CHARSET); // 设置编码

conn.setRequestProperty("connection", "keep-alive");

conn.setRequestProperty("Content-Type", CONTENT_TYPE + ";boundary=" + BOUNDARY);

if (file != null) {

/**

* 当文件不为空,把文件包装并且上传

*/

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

StringBuffer sb = new StringBuffer();

sb.append(PREFIX);

sb.append(BOUNDARY);

sb.append(LINE_END);

/**

* 这里重点注意: name里面的值为服务端需要key 只有这个key 才可以得到对应的文件

* filename是文件的名字,包含后缀名的 比如:abc.png

*/

sb.append("Content-Disposition: form-data; name=\"uploadfile\"; filename=\""

+ file.getName() + "\"" + LINE_END);

sb.append("Content-Type: application/octet-stream; charset=" + CHARSET + LINE_END);

sb.append(LINE_END);

dos.write(sb.toString().getBytes());

InputStream is = new FileInputStream(file);

byte[] bytes = new byte[1024];

int len = 0;

while ((len = is.read(bytes)) != -1) {

dos.write(bytes, 0, len);

}

is.close();

dos.write(LINE_END.getBytes());

byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINE_END).getBytes();

dos.write(end_data);

dos.flush();

/**

* 获取响应码 200=成功 当响应成功,获取响应的流

*/

int res = conn.getResponseCode();

Log.e(TAG, "response code:" + res);

// if(res==200)

// {

Log.e(TAG, "request success");

InputStream input = conn.getInputStream();

StringBuffer sb1 = new StringBuffer();

int ss;

while ((ss = input.read()) != -1) {

sb1.append((char) ss);

}

result = sb1.toString();

Log.e(TAG, "result : " + result);

// }

// else{

// Log.e(TAG, "request error");

// }

}

} catch (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

return result;

}

/**

* 通过拼接的方式构造请求内容,实现参数传输以及文件传输

*

* @param url Service net address

* @param params text content

* @param files pictures

* @return String result of Service response

* @throws IOException

*/

public static String post(String url, Map params, Map files)

throws IOException {

String BOUNDARY = java.util.UUID.randomUUID().toString();

String PREFIX = "--", LINEND = "\r\n";

String MULTIPART_FROM_DATA = "multipart/form-data";

String CHARSET = "UTF-8";

URL uri = new URL(url);

HttpURLConnection conn = (HttpURLConnection) uri.openConnection();

conn.setReadTimeout(10 * 1000); // 缓存的最长时间

conn.setDoInput(true);// 允许输入

conn.setDoOutput(true);// 允许输出

conn.setUseCaches(false); // 不允许使用缓存

conn.setRequestMethod("POST");

conn.setRequestProperty("connection", "keep-alive");

conn.setRequestProperty("Charsert", "UTF-8");

conn.setRequestProperty("Content-Type", MULTIPART_FROM_DATA + ";boundary=" + BOUNDARY);

// 首先组拼文本类型的参数

StringBuilder sb = new StringBuilder();

for (Map.Entry entry : params.entrySet()) {

sb.append(PREFIX);

sb.append(BOUNDARY);

sb.append(LINEND);

sb.append("Content-Disposition: form-data; name=\"" + entry.getKey() + "\"" + LINEND);

sb.append("Content-Type: text/plain; charset=" + CHARSET + LINEND);

sb.append("Content-Transfer-Encoding: 8bit" + LINEND);

sb.append(LINEND);

sb.append(entry.getValue());

sb.append(LINEND);

}

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

outStream.write(sb.toString().getBytes());

// 发送文件数据

if (files != null)

for (Map.Entry file : files.entrySet()) {

StringBuilder sb1 = new StringBuilder();

sb1.append(PREFIX);

sb1.append(BOUNDARY);

sb1.append(LINEND);

sb1.append("Content-Disposition: form-data; name=\"uploadfile\"; filename=\""

+ file.getValue().getName() + "\"" + LINEND);

sb1.append("Content-Type: application/octet-stream; charset=" + CHARSET + LINEND);

sb1.append(LINEND);

outStream.write(sb1.toString().getBytes());

InputStream is = new FileInputStream(file.getValue());

byte[] buffer = new byte[1024];

int len = 0;

while ((len = is.read(buffer)) != -1) {

outStream.write(buffer, 0, len);

}

is.close();

outStream.write(LINEND.getBytes());

}

// 请求结束标志

byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINEND).getBytes();

outStream.write(end_data);

outStream.flush();

// 得到响应码

int res = conn.getResponseCode();

InputStream in = conn.getInputStream();

StringBuilder sb2 = new StringBuilder();

if (res == 200) {

int ch;

while ((ch = in.read()) != -1) {

sb2.append((char) ch);

}

}

outStream.close();

conn.disconnect();

return sb2.toString();

}

}

示例调用第二种方式上传:

final Map params = new HashMap();

params.put("send_userId", String.valueOf(id));

params.put("send_email", address);

params.put("send_name", name);

params.put("receive_email", emails);

final Map files = new HashMap();

files.put("uploadfile", file);

final String request = UploadUtil.post(requestURL, params, files);

2

上传图片到服务器不能马上响应,用post方式上传图片到服务器相关推荐

  1. 吃鸡服务器不接受响应,绝地求生:蓝洞优化服务器性能,从此告别掉帧延迟!...

    原标题:绝地求生:蓝洞优化服务器性能,从此告别掉帧延迟! 很多玩家们都非常了解服务器的重要性,服务器响应时间也可以描述为'网络延迟'.如果服务器的响应时间减少(或者网络延迟减少) 的话,玩家们可以体验 ...

  2. socket服务器显示未响应,QTCPSOCKET 客户端已连接 而服务器无响应

    最近在使用qt coding一个项目时,使用到了qtcpsocket模块来编写客户端与服务器.在windows平台下还能正常工作,但是在ubuntu平台下,客户端提示已连接时,服务器却没有响应.经过排 ...

  3. 服务器驱动停止响应,IE驱动程序的命令行服务器已停止工作

    当我尝试运行最新的IEDriver 2.50.1,等待几秒钟后,我遇到了这个问题. 在命令行中,它说:只允许本地连接.也许这就是问题所在,我该如何改变呢? 我试图找到解决这个问题的方法,但没什么好说的 ...

  4. 云服务器网无响应,服务器之家教你dns服务器未响应导致无法上网怎么办

    最近服务器之家在逛网页的时候看到有不少的网友在讨论dns未响应的解决方法,然后服务器之家就给网友们进行解答了这个问题,俗话说"独乐乐不如众乐乐",所以,今天服务器之家我就决定也来和 ...

  5. t3客户端连接服务器就未响应,t3标准版客户端连接服务器方法

    t3标准版客户端连接服务器方法 内容精选 换一换 SSL证书是一种遵守SSL协议的服务器数字证书,可以在客户端和服务器端之间建立加密通道,保证数据在传输过程中不被窃取或篡改.为了提高数据安全性,Gau ...

  6. 【案例分享】华为防火墙出接口方式的单服务器智能DNS配置

    介绍出接口方式的单服务器智能DNS的配置举例. 组网需求 如图1所示,企业部署了一台ISP1服务器对外提供Web服务,域名为www.example.com.ISP1服务器的私网IP地址为10.1.1. ...

  7. android上传本地图片到服务器上,Android使用post方式上传图片到服务器的方法

    本文实例讲述了Android使用post方式上传图片到服务器的方法.分享给大家供大家参考,具体如下: /** * 上传文件到服务器类 * * @author tom */ public class U ...

  8. android用上传图片到服务器上,Android使用post方式上传图片到服务器的方法

    本文实例讲述了Android使用post方式上传图片到服务器的方法.分享给大家供大家参考,具体如下: /** * 上传文件到服务器类 * * @author tom */ public class U ...

  9. 一台dhcp服务器无法响应,案例解析,不堪重负DHCP服务器罢工了

    在不少企事业单位,出于节约资源或者便利的需要,往往在一台PC机上部署很多服务,这样这台PC就兼职较多服务器功能.这样的规划确实方便了管理和维护,但也为网络的安全.稳定运行埋下了隐患.一旦网络发生故障, ...

最新文章

  1. 高精度垃圾分类模型开发与硬件集成
  2. BeetleX框架详解-小结
  3. mockjs的介绍、基本使用和封装
  4. 一个500人天的BI项目实施记录
  5. svn服务器文件保存位置,Windows 部署SVN服务器
  6. 编程实现误差逆传播算法(BP算法)
  7. 俄勒冈健康与科学大学计算机,GE 医疗合作俄勒冈健康与科学大学,赋能虚拟ICU...
  8. R语言使用pcauchy函数生成柯西分布累积分布函数数据、使用plot函数可视化柯西分布累积分布函数数据(Cauchy distribution)
  9. PHPExcel设置单元格值下拉选择
  10. DecisionTreeClassifier实例:Iris莺尾花分类
  11. CSS3动画实现高亮光弧效果,循环闪动效果
  12. talib.APO绝对价格振荡器指标详解
  13. Dynamips路由模拟器使用心得
  14. html中repeat的作用,html中hover和no-repeat
  15. linux usb检测工具,Linux下USB设备检测全教程
  16. Linux运行PhotoZoom
  17. 2023最新萤火商城源码 V2.0版+全开源的
  18. vue 停止页面滚动_Vue禁止h5页面iOS浏览器下拉bounce效果
  19. 为什么账龄分析的余额与总账应收账款科目的余额对不上?如何分析?
  20. 斐波那契数列简单步骤分析

热门文章

  1. 动态代理(2)----动态代理和AOP
  2. 安装Eclipse ADT插件时遇到的一些问题,错误
  3. [转载]上善若水,厚德载物
  4. 打印机的共享设置方法
  5. kibana报错Request Timeout after 30000ms故障解决
  6. Apache服务安全加固及Apache优化
  7. VBA调用bat,doc 命令行 窗口关闭之后,VBA代码 再继续执行
  8. 日语学习 (助词 「で」 和「に」 的区别)
  9. 【Python-3.5】matplotlib绘制气温折线图
  10. sublime text3插件TrailingSpaces无法使用的解决方法