-1

我目前正在为一个项目工作,我需要检测是否插入了 Oculus 设备。

我这样做是使用 usb4java 库 usb4java。

<dependency> <groupId>org.usb4java</groupId> <artifactId>usb4java-javax</artifactId> <version>1.2.0</version> </dependency>

我想使用安装在 ubuntu 服务器上的 Maven 和 Jenkins 构建我的程序,但是我遇到了这个库的问题:如果我的程序是使用这台机器构建的,我的函数不起作用,但是如果我编译它在 Windows 上,我的功能就像一个魅力。

这是我使用的功能:

if (hub == null) {
        UsbServices services = UsbHostManager.getUsbServices();
        hub = services.getRootUsbHub();
    }
    //List all the USBs attached
    List devices = hub.getAttachedUsbDevices();
    Iterator iterator = devices.iterator();
    boolean res = false;
    while (iterator.hasNext()) {
        UsbDevice device = (UsbDevice) iterator.next();
        UsbDeviceDescriptor desc = device.getUsbDeviceDescriptor();
        if (device.isUsbHub()) {
            res = res || isOculusPlugged((UsbHub) device);
        }
        else {
            try {
                if (desc.idVendor() == 10291) {
                    res = true;
                }
            } catch (NullPointerException ignored) {}
        }
    }

我没有得到任何错误,但检测只是无法使用 linux 构建的版本(res 总是错误的)。

我检查了包括 Windows 在内的所有 JNI 库都在我正在运行的 JAR-With-Dependencies 中。

谢谢你的帮助,卢卡斯

4

1 回答 1

0

原来是路径问题

于 2015-10-19T09:38:54.177 回答