如何通过 USB 在 android 设备和运行在 windows 上的机器之间进行通信
How to communicate between android device and machine which runs on windows via USB
我正在开发一个 android 应用程序,我试图在 android 设备和运行在 windows OS 上的机器之间建立通信。我想使用 USB 将一些字节从 android 设备传输到该机器。
我相信在 windows OS 上运行的机器总是充当主机。正确吗?
我看到 android 有两个 API 的
- https://developer.android.com/guide/topics/connectivity/usb/accessory.html
- https://developer.android.com/guide/topics/connectivity/usb/host.html
谁能告诉我哪个 API 适合我?
I believe that machine which runs on windows OS always act as host. correct ?
是的。 Windows OS 将充当 USB 主机。
Can anyone suggest me which API will work for me ?
您的 android 设备将充当附件。所以请遵循附件 API。
我正在开发一个 android 应用程序,我试图在 android 设备和运行在 windows OS 上的机器之间建立通信。我想使用 USB 将一些字节从 android 设备传输到该机器。
我相信在 windows OS 上运行的机器总是充当主机。正确吗?
我看到 android 有两个 API 的
- https://developer.android.com/guide/topics/connectivity/usb/accessory.html
- https://developer.android.com/guide/topics/connectivity/usb/host.html
谁能告诉我哪个 API 适合我?
I believe that machine which runs on windows OS always act as host. correct ?
是的。 Windows OS 将充当 USB 主机。
Can anyone suggest me which API will work for me ?
您的 android 设备将充当附件。所以请遵循附件 API。