码迷,mamicode.com
首页 > 移动开发 > 详细

Android笔记之 文件保存、压缩与清空删除

时间:2014-07-21 23:15:43      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:java   android   图片   压缩   bitmap   

这两天改进优化项目中图片上传的代码,考虑到可能有7、8M的比较大的图片,因为要先进行压缩。所以设计到文件的压缩,保存与清空删除操作。在这里记下笔记。

/**
	 * 压缩并另存为,每次先清空再保存 
	 */
	private void compressFile(){
		//清空保存目录下的旧照片
		String saveDir = Environment.getExternalStorageDirectory()
				+ "/bag/uploadPictures";
		File imageDir = new File(saveDir);
		if (imageDir.exists()) {
			clearFolder(imageDir);
		}else{
			imageDir.mkdirs();
		}
		//判断图片大小,大于300k则压缩
		for (int i = 0; i < imagePathList.size(); i++) {
			Bitmap bitmap = compressImage(imagePathList.get(i));
			imagePathList.set(i, saveImage(saveDir,bitmap));
		}
	}
	
	/**保存图片,输入保存目录和bitmap,以日期命名,返回保存路径
	 * 
	 * @param path
	 * @param bitmap
	 * @return
	 */
	private String saveImage(String path ,Bitmap bitmap){
		  Date dt = new Date();     
		  SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");   
		  String imageName =sdf.format(dt)+".jpg";   
		   
		File file = new File(path,imageName );
		  if (file.exists()) {
			  file.delete();
		  }
		  try {
		   FileOutputStream out = new FileOutputStream(file);
		   bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
		   out.flush();
		   out.close();
		   Log.d(TAG, "图片已经保存");
		   return path+"/"+imageName;
		  } catch (FileNotFoundException e) {
			  Log.d(TAG, "文件不存在");
		     e.printStackTrace();
		     return "";
		  } catch (IOException e) {
			  Log.d(TAG, "IO异常"+e.toString());
		   e.printStackTrace();
		   return "";
		  }
	}
	
	/**
	 * 压缩图片
	 * @param imagePath
	 * @return
	 */
	private Bitmap compressImage(String imagePath) {
		PhotoUpBitmapCache bitmapCache = new PhotoUpBitmapCache();
		//取1280*720大小
		Bitmap image = bitmapCache.revitionImage(imagePath, 1280,720);
		//用下面这个行代码会造成OOM,所以必须用Android 自带的方法去先压缩再导入
//		Bitmap image = BitmapFactory.decodeFile(imagePath);
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中
		int options = 100;
		while ( baos.toByteArray().length /1024 > 300) {	//循环判断如果压缩后图片是否大于100kb,大于继续压缩		
			baos.reset();//重置baos即清空baos
			image.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中
			options -= 5;//每次都减少5%
		}
		ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把压缩后的数据baos存放到ByteArrayInputStream中
		Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream数据生成图片
		 Log.d(TAG, "文件压缩成功");
		return bitmap;
	}
	
	/**
	 * 清空文件夹里面所有子文件
	 */
    private void clearFolder(File file) {   
  
        if(file.isDirectory()){  
            File[] childFiles = file.listFiles();  
            if (childFiles == null || childFiles.length == 0) {  
            
                return;  
            }  
      
            for (int i = 0; i < childFiles.length; i++) {  
                childFiles[i].delete();  
            }  
           
            return ;
        }  
    } 


Android笔记之 文件保存、压缩与清空删除

标签:java   android   图片   压缩   bitmap   

原文地址:http://blog.csdn.net/linfeng24/article/details/38026189

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!