当我要通过 USB 端口连接设备时,我想立即检测到它。我正在寻找 Java API,我的主要目标是 Linux 操作系统。
有谁知道这样的API?
你可以这样做:
try {
String command = "lsusb"; // you may add some param if you want
// or use adb for instance
Process child = Runtime.getRuntime().exec(command);
// Get output stream to write from it
OutputStream out = child.getOutputStream();
// TODO parsing lsusb output
out.close();
} catch (IOException e) {
}