- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试通过连接的 USB 设备(通过 Android TV 上的 OTG 或 USB 端口)创建文件资源管理器之类的东西。为此,我只需要一个类似于“/storage/sda4”的路径和设备标识符,然后我就可以通过简单的 android 类文件来处理设备。听起来很简单,但我找不到任何相关信息,但所有文件浏览器都可以做到(例如 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。这些都不能识别设备: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)
预装的“文件资源管理器”应用可能拥有设备制造商或自定义 ROM 开发商授予的额外权利。否则,他们也无法任意访问可移动存储。
is a simple way to get list of usb devices with path and identifier exists?
没有文件系统路径,不。 StorageManager
上的 getStorageVolumes()
将为您提供存储卷列表,其中包括外部存储和可移动存储。然后,您可以在 StorageVolume
上使用 createAccessIntent()
来请求用户授予使用该卷的权限。如果他们授予权限,您将得到一个 Uri
返回:
用作卷的临时标识符(即,如果用户弹出媒体,将不再用作标识符,但在此之前,可以区分一个卷与另一个卷),
允许您使用该卷的部分内容,但使用的是 Uri
值,而不是文件系统路径
关于android - 如何从 Android 上的 USB 设备读取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41778676/
我是一名优秀的程序员,十分优秀!