JAVA监控windows7系统的USB插拔事件
Posted 茂财
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA监控windows7系统的USB插拔事件相关的知识,希望对你有一定的参考价值。
package usb;
import java.io.File;
public class UsbDevice {
//扫描系统的盘符
File[] root = File.listRoots();
public static void main(String[] args) {
new UsbDevice().searchUSB();
}
public void searchUSB() {
System.out.println("扫描系统...");
while (true) {
//循环里扫描盘符
File[] files = File.listRoots();
//比较长度
if (files.length > root.length) {
//重新赋值给系统root 相当于加1
root = File.listRoots();
System.out.println("插入");
} else if (files.length < root.length) {
//重新赋值给系统root 相当于减1
root = File.listRoots();
System.out.println("拔出");
}
}
}
}
以上是关于JAVA监控windows7系统的USB插拔事件的主要内容,如果未能解决你的问题,请参考以下文章