java实现监听u盘示例分享
package org.load.u;
import java.io.file;
import java.util.linkedhashmap;
import java.util.map;
// u盘检测
public class checku {
// 存放磁盘状态
private static map<string, boolean> map = new linkedhashmap<string, boolean>();
// 定义磁盘
private static final string[] arr = new string[] {"c", "d", "e", "f", "g", "h", "i", "j"};
public static void main(string[] args){
init();
check();
system.out.println("检测到u盘");
system.out.println(map);
}
// 死循环检测每个磁盘状态
public static void check() {
file file ;
for(;;) {
for(string str : arr) {
file = new file(str + ":\\");
// 如果磁盘现在存在,并且以前不存在
// 则表示刚插上u盘,返回
if(file.exists() && !map.get(str)) {
return;
}
// 需要每次状态改变时,更新保存的状态
// 如果刚检测的状态和原来的状态不一样,则重新更新状态
// 必须放上面的if语句下面
if(file.exists() != map.get(str)) {
map.put(str, file.exists());
}
}
try {
thread.sleep(5 * 1000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}
// 初始化磁盘状态,存在true, 否则false
public static void init() {
file file ;
for(string str : arr) {
file = new file(str + ":\\");
map.put(str, file.exists());
}
}
}
上一篇: 关于MySql链接url参数的设置
下一篇: java实现构造无限层级树形菜单