Android获取挂载U盘的属性
Posted Jason_Lee155
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android获取挂载U盘的属性相关的知识,希望对你有一定的参考价值。
StorageManager是android SDK中管理存储设备的一个类。其中的存储设备分内部存储和外部存储,外部存储可以有SDCard、U盘等其他挂载的外设。所以,U盘的信息也可以通过此系统服务获取。
StorageVolume代表的是一个设备信息的数据结构,里面包含了名称、路径、挂载状态等等信息。
以前获取设备列表的方法大多是通过反射获getVolumeList()方法获取到StorageVolume[]数组,但是现在发现完全没有必要的,通过getStorageVolumes()方法便可以获取到StorageVolume的集合。只是在取StorageVolume里面的字段的时候,像Path、ID这些属性的get方法是隐藏的,需要使用反射来获取。
public static void uDiskName(Context context)
StorageManager storageManager = context.getSystemService(StorageManager.class);
List<StorageVolume> volumeList = storageManager.getStorageVolumes();
for (StorageVolume volume : volumeList)
if (null != volume && volume.isRemovable())
//这个其实就是U盘的名称
String label = volume.getDescription(context);
//设备挂载的状态,如:mounted、unmounted
String status = volume.getState();
//是否是内部存储设备
boolean isEmulated = volume.isEmulated();
//是否是可移除的外部存储设备
boolean isRemovable = volume.isRemovable();
//设备的路径
String mPath="";
try
Class myclass = Class.forName(volume.getClass().getName());
Method getPath = myclass.getDeclaredMethod("getPath",null);
getPath.setAccessible(true);
mPath = (String) getPath.invoke(volume);
LogUtil.i(TAG,"name: "+label+", status: "+status
+", isEmulated: " +isEmulated +", isRemovable: "+isRemovable+", mPath: "+mPath);
catch (ClassNotFoundException e)
e.printStackTrace();
catch (NoSuchMethodException e)
e.printStackTrace();
catch (InvocationTargetException e)
e.printStackTrace();
catch (IllegalAccessException e)
e.printStackTrace();
以上是关于Android获取挂载U盘的属性的主要内容,如果未能解决你的问题,请参考以下文章