gpt4 book ai didi

android - 将文件从 android 复制到 USB 驱动器?

转载 作者:搜寻专家 更新时间:2023-11-01 08:45:41 27 4
gpt4 key购买 nike

无法找到如何将文件从 Android 设备复制到 USB 驱动器的良好解决方案。我知道 android 从 3.1 版本开始就有 API。但是文档不是很清楚,我可以在哪里使用这些 API。有没有人在这方面有经验?我注册了广播接收器,在允许 usb 连接到应用程序后,只想将一些字节传输到 USB 存储,如下所示:

     Set<String> devices = mUsbManager.getDeviceList().keySet();
Object[] array = devices.toArray();
String text = array[0].toString();
byte [] s="hello".getBytes();
UsbDeviceConnection connection=mUsbManager.openDevice(mUsbManager.getDeviceList().get(text));
UsbEndpoint usbEndpoint=mUsbManager.getDeviceList().get(text).getInterface(0).getEndpoint(0);
connection.bulkTransfer(usbEndpoint,s,s.length,10000);

然而,我并没有得到我所期望的。有人可以帮忙吗?提前致谢

最佳答案

在此链接上找到解决方案:https://github.com/mjdev/libaums .你需要编写你的文件系统来与 U 盘交互

关于android - 将文件从 android 复制到 USB 驱动器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28577782/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com