博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 批量上传sd卡图片
阅读量:6624 次
发布时间:2019-06-25

本文共 3897 字,大约阅读时间需要 12 分钟。

最近手头上需要批量上传一些保存到SD卡图片由于简单,过于忘记,写在博客中吧!同时也希望能帮到大家!

一 、 以下是一个Service类

package cn.com.service;

import java.io.File;

import java.util.ArrayList;
import java.util.List;

import org.apache.commons.httpclient.methods.PostMethod;

import org.apache.commons.httpclient.methods.multipart.FilePart;
import org.apache.commons.httpclient.methods.multipart.MultipartRequestEntity;
import org.apache.commons.httpclient.methods.multipart.Part;
import org.apache.commons.httpclient.methods.multipart.StringPart;

import android.util.Log;

/**

 * 批量上传服务类
 * @author ChonZY
 *
 */
public class DataService {
 /**
  * 批量上传图片
  * @param path  服务器地址
  * @param name 用户名
  * @param filePath sd卡图片路径
  * @return
  * @throws Exception
  */
 public static String sendDataByHttpClientPost(String path ,String name,List<File> filePath)throws Exception{
  
  List<Part> partList = new ArrayList<Part>();
  partList.add(new StringPart("user", name));
  partList.add(new StringPart("picnumber", "4"));
  
  for (int i = 0; i < filePath.size(); i++) {
   String picPath = filePath.get(i).getPath();
   Log.i("Other", "服务类 图片路径Service _ PicPath ="+picPath);
   partList.add(new FilePart("file", new File(filePath.get(i).getPath())));
  }
  
  // 实例化上传数据的数组
//  Part [] parts = {new StringPart("user", name),new FilePart("file", new File(filePath))};
  
  Part[] parts = partList.toArray(new Part[0]);
  
  Log.i("Other","new Part[0] _size:"+ parts.length);
  
  PostMethod filePost = new PostMethod(path);
  
  filePost.setRequestEntity(new MultipartRequestEntity(parts, filePost.getParams()));
  
  org.apache.commons.httpclient.HttpClient client = new org.apache.commons.httpclient.HttpClient();
  client.getHttpConnectionManager().getParams().setConnectionTimeout(5000);
  
  int status = client.executeMethod(filePost);
  Log.i("Other", "返回结果:"+status);
  if(status == 200){
   
   System.out.println( filePost.getResponseCharSet());
   String result = new String(filePost.getResponseBodyAsString());
   
   
   System.out.println("--"+result);
   return result;
  }else{
   throw new IllegalStateException("服务器状态异常");
  }
  
  
 }
 /**
  * 单次上传图片or文件
  * @param path
  * @param name
  * @param filePath
  * @return
  * @throws Exception
  */
 public static String sendDataByHttpClientPost(String path ,String name,String filePath)throws Exception{
  
  /*List<Part> partList = new ArrayList<Part>();
  partList.add(new StringPart("user", name));
  
  for (int i = 0; i < 4; i++) {
   partList.add(new FilePart(name, FilePart()));
  }*/
  
  // 实例化上传数据的数组
  Part [] parts = {new StringPart("user", name),new FilePart("file", new File(filePath))};
  
  PostMethod filePost = new PostMethod(path);
  
  filePost.setRequestEntity(new MultipartRequestEntity(parts, filePost.getParams()));
  
  org.apache.commons.httpclient.HttpClient client = new org.apache.commons.httpclient.HttpClient();
  client.getHttpConnectionManager().getParams().setConnectionTimeout(5000);
  
  int status = client.executeMethod(filePost);
  Log.i("Other", "返回结果:"+status);
  if(status == 200){
   
   System.out.println( filePost.getResponseCharSet());
   String result = new String(filePost.getResponseBodyAsString());
   
   
   System.out.println("--"+result);
   return result;
  }else{
   throw new IllegalStateException("服务器状态异常");
  }
  
  
 }

}

----------------------------------------------------------------------------------------------------------

二、 以下是Activity中调用Service类的方法,进行批量上传图片

 /**

  * 批量上传图片
  */
 private void filePostForSDPic() {
  new Thread(){
   
   public void run() {
    try {
     saveDir = Environment.getExternalStorageDirectory()+ "/chonPic";
       
     String filePath = saveDir;
     String path = "http://这里的路径就不贴上去了,保证成功并万无一失";
     String result = DataService.sendDataByHttpClientPost(path, "admin", fileList);
     
     Toast.makeText(MainActivity.this,"pic_haha:"+ result, 0).show();
    
    
    } catch (Exception e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
    }
   };
   
  }.start();
 }
 

---------------------------------------------------------------------------------------

调用批量上传方法需要引入阿帕奇3 个jar包

1.  commons-codec-1.3.jar

2. commons-httpclient-3.1.jar

3.  commons-logging-1.1.jar

 

大家可以去网上下载,也可以去我的博客的资源下载!

 

 

 

 

转载地址:http://dwtpo.baihongyu.com/

你可能感兴趣的文章
Flash AS3 Loader的一些总结
查看>>
.net(vs2010)调试技巧
查看>>
哈希方法
查看>>
45个纯 CSS 实现的精美边框效果【附在线演示和源码】【下篇】
查看>>
js的逻辑 OR 运算符- ||
查看>>
[SQL Server]一次执行资料夹内的.sql 指令码
查看>>
SQLServer中的死锁的介绍
查看>>
【计算机视觉】粒子滤波跟踪
查看>>
hadoop集群扩展
查看>>
操作系统诊断
查看>>
[Compose] 19. Leapfrogging types with Traversable
查看>>
Tomcat version 7.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 and 6 Web modules
查看>>
2015年度新增开源软件排名TOP100
查看>>
设计模式 之 原型
查看>>
BZOJ 2456: mode(新生必做的水题)
查看>>
SSM实战——秒杀系统之高并发优化
查看>>
View State
查看>>
自旋锁spinlock解析
查看>>
【java.lang.UnsupportedClassVersionError】版本不一致出错
查看>>
Ubuntu16.04 安装RabbitMQ
查看>>