| Author |
USB Detection
|
Isaac Hewitt
Ranch Hand
Joined: Jul 24, 2006
Posts: 176
|
|
I am running a background thread which, every 3 seconds, should detect whether a USB device has been inserted into the computer, and then changes the ViewPort view of the ScrollPane containg JTree to reflect the new drive. This end of it works perfectly, but the trouble is when a user removes the USB device and the program needs to detect this change.
|
 |
Isaac Hewitt
Ranch Hand
Joined: Jul 24, 2006
Posts: 176
|
|
|
I forgot mention the 2 boolean class variables are no longered used, so please ignore them in your analysis of this snippet. I am using NetBeans 7 with Java 7 update 1, which performs superbly.
|
 |
Prabakar Kalivaradan
Greenhorn
Joined: Dec 12, 2011
Posts: 18
|
|
Can you use HashMap<String,File> to maintain a list of drives available? Where String key is the drive letter and File is the corresponding drive. This will help cross checking with drives anytime later. In your thread, you can cross check the entire map you are maintaining whenever the drives count is lesser than previous attempt; basically you need to maintain drives count as well;
something like,
You can also use HashSet because system file drives are unique set of items.
|
-prabak
|
 |
 |
|
|
subject: USB Detection
|
|
|