赞
踩
在使用 Sharesdk 过程中发现 该组件不能分享 data目录下的图片资源,于是有了下面的方法,用来拷贝 图片资源,
- /**
- * @author zhang a nan
- * @email 191118015@qq.com <br>
- * --------------------------------------
- * @param FileName
- * FileName的实例值
- * "/data/data/com.thinkzheng.game.zuobudao/files/87249_70986_93311.jpg"
- * @return
- */
- public String copy(String FileName) {
- // 获取文件名称
- String res = FileName.substring(FileName.lastIndexOf("/") + 1);
- // sdcard下保存文件的目录
- String dir = mContext.getString(R.string._mnt_sdcard_)
- + "zuobudao/screenshot/";
- // 文件路径
- String path = dir + res;
- try {
- // 读取文件
- Bitmap bmp = BitmapFactory.decodeFile(FileName);
-
- File file = new File(dir);
- // 判断目录是否存在
- if (!file.exists())
- // 创建目录
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。