码迷,mamicode.com
首页 > 其他好文 > 详细

文件,图片,视频的保存路径

时间:2015-12-10 16:40:35      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

public class PathManager {
    //自定义相机存储路径(图片经过剪裁后的图片,生成640*640)
    public static File getCropPhotoPath() {
        File photoFile = new File(getCropPhotoDir(),System.currentTimeMillis() + ".jpg");
        return photoFile;
    }

    //存储剪裁后的图片的文件夹
    public static File getCropPhotoDir() {
        String path = Environment.getExternalStorageDirectory()
                + "/etourypic";
        File file = new File(path);
        if (!file.exists()) {
            file.mkdirs();
        }
        return file;
    }
    //存储拍照完成的页面
    public static File getVideoPath(){
        File videoFile = new File(getVideoDir(),System.currentTimeMillis() + ".3gp");
        return videoFile;
    }
    public static File getVideoDir() {
        String path = Environment.getExternalStorageDirectory()
                + "/etouryvideo";
        File file = new File(path);
        if (!file.exists()) {
            file.mkdirs();
        }
        return file;
    }
}

文件,图片,视频的保存路径

标签:

原文地址:http://www.cnblogs.com/520-1314/p/5036094.html

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