欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android 获取sd卡根目录下的指定文件

程序员文章站 2022-05-28 11:38:11
...

1.首先开启读取sd卡权限:

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

2.判断sd卡是否存在:

boolean sdCardExist = Environment.getExternalStorageState()               .equals(android.os.Environment.MEDIA_MOUNTED);

3.获取根目录下指定文件(以图片做列子)

 //获得SD卡根目录路径
 sdDir =Environment.getExternalStorageDirectory();
 String sdpath = sdDir.getAbsolutePath(); 
 //获取指定图片路径
 String filepath = sdpath + File.separator + "hand.jpg";
File file = new File(filepath);
//创建一个imageView对象
 ImageView imageView = new ImageView(this);
 if (file.exists()) {
 Bitmap bm = BitmapFactory.decodeFile(filepath);
 // 将图片显示到ImageView中
 imageView.setImageBitmap(bm);
 ll.addView(imageView);}

4.附上完整代码:

 File sdDir = null;
 //判断sd卡是否存在
 boolean sdCardExist = Environment.getExternalStorageState()            .equals(android.os.Environment.MEDIA_MOUNTED);
 if(sdCardExist){
   //获得SD卡根目录路径
    sdDir = Environment.getExternalStorageDirectory();
    String sdpath = sdDir.getAbsolutePath();
    //获取指定图片路径
    String filepath = sdpath + File.separator +"hand.jpg";
    File file = new File(filepath);
    //创建一个imageView对象
    ImageView imageView = new ImageView(this);
    if (file.exists()) {
      Bitmap bm = BitmapFactory.decodeFile(filepath);
      // 将图片显示到ImageView中
        imageView.setImageBitmap(bm);
        ll.addView(imageView);}
  }

上一篇: APP更新

下一篇: cocoapods —— 更新