如何从 android 上的 USB 设备读取文件?
How can I read files from usb device on android?
我正在尝试通过连接的 USB 设备(通过 android 电视上的 OTG 或 USB 端口)创建文件资源管理器之类的东西。
我需要的只是一个类似“/storage/sda4”的路径和设备标识符,然后我可以通过 simle android class 文件使用设备。听起来很简单,但我找不到任何相关信息,但所有文件浏览器都可以做到(例如 ESExplorer)。
好的,我找到了一种简单的方法来获取所有连接的带有标识符
的 USB 设备
UsbManager usbManager = (UsbManager) context.getSystemService(Context.USB_SERVICE);
usbManager.getDeviceList();
但是我怎样才能得到关于路径的信息呢? deviceName 包含类似“/dev/bus/usb/00x”的内容,但它帮不了我,我需要简单的模拟 android 路径(“/storage/sda4”)。此页面 https://developer.android.com/guide/topics/connectivity/usb/host.html 告诉我需要获取 UsbInterfaces 并使 UsbConnection 批量传输和其他废话,我完成了所有操作但没有找到设备路径或有关 USB 文件列表的任何其他信息。
好的,我找到另一种方法来获取(不需要许可!)获取所有已连接设备的路径
StorageManager storageManager = (StorageManager) context.getSystemService(Context.STORAGE_SERVICE);
Method getVolumeListMethod = StorageManager.class.getDeclaredMethod("getVolumeList");
Object[] storageVolumeList = (Object[]) getVolumeListMethod.invoke(storageManager);
它可以工作,但我需要识别一个设备(因为我想缓存不同 usb 存储的文件)但我可以从卷对象中获得的是 mStorageId、mDescriptionId、mPrimary、mRemovable、mEmulated、mMtpReserveSpace、mAllowMassStorage , mMaxFileSize, mOwner, mUuid, mUserLabel, mState, mSubSystem。
None本无法识别设备:mDescriptionId和mStorageId是
唯一的 fot usb 端口,mUuid 为空,mUserLabel 不唯一。
Environment.getExternalFilesDirs() 无济于事,它不提供任何设备 ID,并且仅适用于一台设备。
我在这里找到了类似的问题,但没有正确答案Android list files from USB Drive。
那么,是否有一种简单的方法可以获取具有路径和标识符的 USB 设备列表?
All I need for this is a path something like "/storage/sda4" and device identifier, and then I can work with device through simle android class File
不,因为 you do not have arbitrary access to removable storage,包括 USB OTG 驱动器,在 Android 4.4+ 上。
all file explorers can do it (for example ESExplorer)
Pre-installed "file explorer" 应用程序可能拥有设备制造商或自定义 ROM 开发商授予的额外权利。否则,他们也无法任意访问可移动存储。
is a simple way to get list of usb devices with path and identifier exists?
没有文件系统路径,没有。 StorageManager
上的 getStorageVolumes()
将为您提供存储卷列表,其中包括外部存储和可移动存储。然后,您可以在 StorageVolume
上使用 createAccessIntent()
来请求用户授予使用该卷的权限。如果他们授予许可,您将得到 Uri
回复:
用作卷的临时标识符(即,如果用户弹出媒体,将不再用作标识符,但在此之前,可以将一个卷与另一个区分),并且
允许您使用该卷的部分内容,但使用 Uri
值,而不是文件系统路径
我正在尝试通过连接的 USB 设备(通过 android 电视上的 OTG 或 USB 端口)创建文件资源管理器之类的东西。 我需要的只是一个类似“/storage/sda4”的路径和设备标识符,然后我可以通过 simle android class 文件使用设备。听起来很简单,但我找不到任何相关信息,但所有文件浏览器都可以做到(例如 ESExplorer)。 好的,我找到了一种简单的方法来获取所有连接的带有标识符
的 USB 设备UsbManager usbManager = (UsbManager) context.getSystemService(Context.USB_SERVICE);
usbManager.getDeviceList();
但是我怎样才能得到关于路径的信息呢? deviceName 包含类似“/dev/bus/usb/00x”的内容,但它帮不了我,我需要简单的模拟 android 路径(“/storage/sda4”)。此页面 https://developer.android.com/guide/topics/connectivity/usb/host.html 告诉我需要获取 UsbInterfaces 并使 UsbConnection 批量传输和其他废话,我完成了所有操作但没有找到设备路径或有关 USB 文件列表的任何其他信息。
好的,我找到另一种方法来获取(不需要许可!)获取所有已连接设备的路径
StorageManager storageManager = (StorageManager) context.getSystemService(Context.STORAGE_SERVICE);
Method getVolumeListMethod = StorageManager.class.getDeclaredMethod("getVolumeList");
Object[] storageVolumeList = (Object[]) getVolumeListMethod.invoke(storageManager);
它可以工作,但我需要识别一个设备(因为我想缓存不同 usb 存储的文件)但我可以从卷对象中获得的是 mStorageId、mDescriptionId、mPrimary、mRemovable、mEmulated、mMtpReserveSpace、mAllowMassStorage , mMaxFileSize, mOwner, mUuid, mUserLabel, mState, mSubSystem。 None本无法识别设备:mDescriptionId和mStorageId是 唯一的 fot usb 端口,mUuid 为空,mUserLabel 不唯一。
Environment.getExternalFilesDirs() 无济于事,它不提供任何设备 ID,并且仅适用于一台设备。
我在这里找到了类似的问题,但没有正确答案Android list files from USB Drive。
那么,是否有一种简单的方法可以获取具有路径和标识符的 USB 设备列表?
All I need for this is a path something like "/storage/sda4" and device identifier, and then I can work with device through simle android class File
不,因为 you do not have arbitrary access to removable storage,包括 USB OTG 驱动器,在 Android 4.4+ 上。
all file explorers can do it (for example ESExplorer)
Pre-installed "file explorer" 应用程序可能拥有设备制造商或自定义 ROM 开发商授予的额外权利。否则,他们也无法任意访问可移动存储。
is a simple way to get list of usb devices with path and identifier exists?
没有文件系统路径,没有。 StorageManager
上的 getStorageVolumes()
将为您提供存储卷列表,其中包括外部存储和可移动存储。然后,您可以在 StorageVolume
上使用 createAccessIntent()
来请求用户授予使用该卷的权限。如果他们授予许可,您将得到 Uri
回复:
用作卷的临时标识符(即,如果用户弹出媒体,将不再用作标识符,但在此之前,可以将一个卷与另一个区分),并且
允许您使用该卷的部分内容,但使用
Uri
值,而不是文件系统路径