当我要通过USB端口连接设备时,我想立即检测到它。 我正在寻找Java API,我的主要目标是Linux OS。
有没有人知道这样的API?
答案 0 :(得分:1)
您可以这样做:
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) {
}
答案 1 :(得分:0)