热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Android图片上传工具类优化方案(第三部分)

本文介绍了在Android平台上的图片上传工具类优化方案,重点讨论了如何通过设置`MultipartEntity`来实现图片的高效上传。具体实现中,通过自定义`UserUploadServiceImpl`类,详细展示了如何构建和发送包含图片数据的HTTP请求。此外,还探讨了如何处理上传过程中的常见问题,如网络异常和文件格式验证,以确保上传的稳定性和可靠性。

大体部分与post提交类似,只是需要设置

MultipartEntity

代码如下:

public class userUploadServiceImpl implements userUploadService{

@Override

public String userUpload(InputStream in, Map data,

String path) throws Exception {

HttpClient client=new DefaultHttpClient();

HttpPost post=new HttpPost("http://192.168.0.179:8080/Myweb/upload.do");

MultipartEntity entity=new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE, null, Charset.forName("utf-8"));

for(Entry map: data.entrySet())

{

String key=map.getKey();

String value=map.getValue();

System.out.println("value----->"+value);

StringBody body=new StringBody(value,Charset.forName("UTF-8"));

System.out.println("valueString----->"+body.toString());

entity.addPart(key, body);

}

String fileName=null;

if(path.contains("/"))

{

int index=path.lastIndexOf("/");

fileName=path.substring(index+1);

}

else {

fileName=path;

}

System.out.println("this is userUploadServiceImpl----->>>>"+fileName);

entity.addPart("file", new InputStreamBody(in,"multipart/form-data",fileName));

//System.out.println("this is userUploadServiceImpl----->>>>"+fi);

post.setEntity(entity);

HttpResponse response=client.execute(post);

int statuscode=response.getStatusLine().getStatusCode();

if(statuscode!=HttpStatus.SC_OK)

{

System.out.println("连接不上网络");

}

else {

String reString=EntityUtils.toString(response.getEntity(),"UTF-8");

System.out.println("this is ----->>>>"+reString);

return reString;

}

return null;

}

}

一定记得这一句,不然会很容易出现中文乱码,笔者调试了很久,才找到解决方案。

MultipartEntity entity=new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE, null, Charset.forName("utf-8"));if(path.contains("/"))

{

int index=path.lastIndexOf("/");

fileName=path.substring(index+1);

}

else {

fileName=path;

}这部分代码仅仅是获取文件名(只保留/以后的名字)。

整个源代码上个中已经含有。

原文:http://blog.csdn.net/nothingl3/article/details/45048493



推荐阅读
author-avatar
大伟
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有