博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android sdcard文件存储 + 媒体库更新方法
阅读量:6524 次
发布时间:2019-06-24

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

hot3.png

图片存储

if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) 

 {

     if(image != null)

     {
            String sdardDir = Environment.getExternalStorageDirectory().toString();
            String name = sdardDir+"/appname/images/"+imagename+".jpg";
             java.io.File file = new java.io.File(sdardDir+"/appname/images");
             boolean bool = true;
             if(!file.isDirectory())
             {
                  bool = file.mkdirs() ; 
             }

            if(bool)

           {

              File iamgeFile = new File(path);

             if(!iamgeFile.exists())
            {
              try {iamgeFile.createNewFile();} catch (IOException e1) {e1.printStackTrace();error= "1"+e1.toString(); }  
             }
             FileOutputStream fOut = null;   
             try {  fOut = new FileOutputStream(iamgeFile);   } catch (FileNotFoundException e) {  e.printStackTrace();
                 error= "2"+e.toString(); }  
  image.compress(Bitmap.CompressFormat.JPEG, 100, fOut);  // png格式图片 image.compress(Bitmap.CompressFormat.png, 100, fOut);
            try { fOut.flush();    } catch (IOException e) {   e.printStackTrace();  
              error="3"+ e.toString(); }   
            try { fOut.close();} catch (IOException e) {    e.printStackTrace(); 
             error= "4"+e.toString(); }

       }

}

else{

  Toast t = Toast.makeText(this, "无sdcard",  Toast.LENGTH_SHORT);

          t.show();

 }

 

媒体库更新

- 通过 Intent.ACTION_MEDIA_MOUNTED 进行全扫描

public void allScan(){   
        sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"  
                + Environment.getExternalStorageDirectory())));   
    } 

-  通过 Intent.ACTION_MEDIA_SCANNER_SCAN_FILE 扫描某个文件  

public void fileScan(String fName){   
         Uri data = Uri.parse("file:///"+fName);   
        sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, data));   
    }  

 

详细

http://wenku.baidu.com/view/537b9b8ecc22bcd126ff0c97.html

http://devbbs.doit.com.cn/viewthread.php?tid=31528

转载于:https://my.oschina.net/AlexZhuang/blog/56505

你可能感兴趣的文章
Pyqt 打开外部链接的几种方法
查看>>
JavaScript DOM编程艺术学习笔记(一)
查看>>
event.srcElement获得引发事件的控件(表单)
查看>>
ASP.NET MVC铵钮Click后下载文件
查看>>
SQL Server 中 EXEC 与 SP_EXECUTESQL 的区别
查看>>
【Bootstrap】 bootstrap-table表格组件
查看>>
基本数据结构 - 栈和队列
查看>>
Linux软中断、tasklet和工作队列
查看>>
如何解决ORA-28002 the password will expire within 7 days问题(密码快过期)
查看>>
Asp.Net Core 轻松学-利用日志监视进行服务遥测
查看>>
Windows Mobile 系列文章索引---不断整理中(2009-07-08)
查看>>
架构语言ArchiMate - 架构视角(Viewpoint)分类框架
查看>>
LightSwitch社区资源搜集
查看>>
Android通讯录查询篇--ContactsContract.Data 二(续)
查看>>
IT人的自我导向型学习:开篇杂谈
查看>>
[原创]BizTalk动手实验系列目录
查看>>
HDU 4611Balls Rearrangement(思维)
查看>>
[LeetCode] Majority Element II
查看>>
minGW, cygwin, GnuWin32【C++的跨平台交叉编译问题】
查看>>
我的Dll(动态链接库)学习笔记(转)
查看>>