繁体   English   中英

在 Java 中检测 USB 驱动器

[英]Detect USB Drive in Java

如何检测 USB 驱动器何时连接到 Windows、Linux 或 Mac 中的计算机?

我在网上看到的唯一方法是迭代驱动器,但我认为没有一个很好的跨平台方法(例如,Linux 中的 File.listRoots() 只返回“/”)。 即使在 Windows 中,这也会导致从每个设备(例如需要很长时间访问的网络驱动器)读取的问题。

有一个名为 jUsb 的库,听起来像是在 Linux 中实现了这一点,但它在 Windows 中不起作用。 还有一个名为 jUsb for Windows 的扩展,但这需要用户安装 dll 文件并运行 .reg。 这些似乎都没有开发好几年,所以我希望现在有更好的解决方案。 当我只想检测是否连接了包含我需要的文件的设备时,它们对于我需要的东西也太过分了。

[编辑] 此外,jUsb 显然不适用于任何最新版本的 Java,所以这甚至不是一个选项......

谢谢

我制作了一个小型库来检测 Java 上的 USB 存储设备。 它适用于 Windows、OSX 和 Linux。 看一看: https : //github.com/samuelcampos/usbdrivedetector

public class AutoDetect {

static File[] oldListRoot = File.listRoots();
public static void main(String[] args) {
    AutoDetect.waitForNotifying();

}

public static void waitForNotifying() {
    Thread t = new Thread(new Runnable() {
        public void run() {
            while (true) {
                try {
                    Thread.sleep(100);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                if (File.listRoots().length > oldListRoot.length) {
                    System.out.println("new drive detected");
                    oldListRoot = File.listRoots();
                    System.out.println("drive"+oldListRoot[oldListRoot.length-1]+" detected");

                } else if (File.listRoots().length < oldListRoot.length) {
    System.out.println(oldListRoot[oldListRoot.length-1]+" drive removed");

                    oldListRoot = File.listRoots();

                }

            }
        }
    });
    t.start();
}
}

上次我检查没有用于 Java 和 Windows 的开源 USB 库。 我使用的简单技巧是编写一个小型 JNI 应用程序来捕获WM_DEVICECHANGE事件。 以下链接可能会有所帮助

  1. http://www.codeproject.com/KB/system/DriveDetector.aspx
  2. http://msdn.microsoft.com/en-us/library/aa363480(v=VS.85).aspx

如果您不想弄乱 JNI,请使用带有 JNA 的任何 Windows 本机库进行 USB( https://github.com/twall/jna/

虽然我建议使用WM_DEVICECHANGE方法...因为您的要求只是一条通知消息....

看看这段代码。 为了满足您的需求,只需轮询以检测USB驱动器并在获得时继续。

我创建了适用于 Linux 和 Windows 的代码检查这个

 import java.io.BufferedReader; 
 import java.io.File;
 import java.io.IOException;
 import java.io.InputStreamReader;

 public class Main{
 public static void main(String[] args) throws IOException{//main class
     Main m = new Main();//main method
     String os = System.getProperty("os.name").toLowerCase();//get Os name
     if(os.indexOf("win") > 0){//checking if os is *nix or windows
         //This is windows
         m.ListFiles(new File("/storage"));//do some staf for windows i am not so sure about '/storage' in windows
         //external drive will be found on 
     }else{
         //Some *nix OS
         //all *nix Os here
         m.ListFiles(new File("/media"));//if linux removable drive found on media
         //this is for Linux

     }


 }

 void ListFiles(File fls)//this is list drives methods
             throws IOException {
     while(true){//while loop


 try {
    Thread.sleep(5000);//repeate a task every 5 minutes
} catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
     Process p = Runtime.getRuntime().exec("ls "+fls);//executing command to get the output
     BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));//getting the output
             String line;//output line
                while((line = br.readLine()) != null){//reading the output
                 System.out.print("removable drives : "+line+"\n");//printing the output
           }
          /*You can modify the code as you wish. 
          * To check if external storage drivers pluged in or removed, compare the lenght
          * Change the time interval if you wish*/
           }

      }
 }

我写了这个程序。 在程序开始时,执行DriverCheck.updateDriverInfo() 然后,要检查 USB 是否已插入拔出,请使用DriverChecker.driversChangedSinceLastUpdate() (返回boolean )。

要检查是否已插入 USB,请使用newDriverDetected() 要检查 USB 是否已被移除,请使用driverRemoved()

这几乎会检查从 A:/ 到 Z:/ 的所有磁盘驱动器。 其中一半甚至不存在,但无论如何我都会检查它们。

package security;

import java.io.File;

public final class DriverChecker {
    private static boolean[] drivers = new boolean[26];

    private DriverChecker() {

    }

    public static boolean checkForDrive(String dir) {
        return new File(dir).exists();
    }

    public static void updateDriverInfo() {
        for (int i = 0; i < 26; i++) {
            drivers[i] = checkForDrive((char) (i + 'A') + ":/");
        }
    }

    public static boolean newDriverDetected() {
        for (int i = 0; i < 26; i++) {
            if (!drivers[i] && checkForDrive((char) (i + 'A') + ":/")) {
                return true;
            }
        }
        return false;
    }

    public static boolean driverRemoved() {
        for (int i = 0; i < 26; i++) {
            if (drivers[i] && !checkForDrive((char) (i + 'A') + ":/")) {
                return true;
            }
        }
        return false;
    }

    public static boolean driversChangedSinceLastUpdate() {
        for (int i = 0; i < 26; i++) {
            if (drivers[i] != checkForDrive((char) (i + 'A') + ":/")) {
                return true;
            }
        }
        return false;
    }

    public static void printInfo() {
        for (int i = 0; i < 26; i++) {
            System.out.println("Driver " + (char) (i + 'A') + ":/ "
                    + (drivers[i] ? "exists" : "does not exist"));
        }
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM