尝试使用 usb4java 高级库

Try to use usb4java highlevel librairie

这是我的程序:

public static void main(String[] args) {
    UsbServices services = null;
    try {
        services = UsbHostManager.getUsbServices();
        hub = services.getRootUsbHub();
    } catch (SecurityException | UsbException e) {
        System.out.println(e.getMessage());
        e.printStackTrace();
    }   
}

并且我创建了文件 'javax.usb.properties',其中包含:

javax.usb.services = org.usb4java.javax.Services

就像文档中所说的那样

在 'getRootUsbHub()' 的那一刻,我有这个错误:

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/lang3/builder/HashCodeBuilder

有人知道为什么方法 getRootUsbHub() 不起作用吗?

您错过了类路径中的 commons-lang3.jar。下载并添加它。