I downloaded and built the latest lib-usb3-ftdi and tried a simple program that lists FTDI Devices like:
Collection<IUsbDevice> devices = FTDIUtility.findFTDIDevices();
but calling this just yields the following exception:
Exception in thread "main" java.nio.file.FileSystemNotFoundException
at com.sun.nio.zipfs.ZipFileSystemProvider.getFileSystem(ZipFileSystemProvider.java:171)
at com.sun.nio.zipfs.ZipFileSystemProvider.getPath(ZipFileSystemProvider.java:157)
at java.nio.file.Paths.get(Paths.java:143)
at javax.usb3.utility.JNINativeLibraryLoader.load(JNINativeLibraryLoader.java:132)
at javax.usb3.ri.UsbServices.<init>(UsbServices.java:85)
at javax.usb3.UsbHostManager.getUsbServices(UsbHostManager.java:69)
at javax.usb3.UsbHostManager.getUsbDeviceList(UsbHostManager.java:223)
at com.ftdichip.usb.FTDIUtility.findFTDIDevices(FTDIUtility.java:151)
at org.fogbeam.examples.libftdi.blink_led.BlinkLEDMain1.main(BlinkLEDMain1.java:17)
Any thoughts?
I downloaded and built the latest lib-usb3-ftdi and tried a simple program that lists FTDI Devices like:
Collection<IUsbDevice> devices = FTDIUtility.findFTDIDevices();but calling this just yields the following exception:
Any thoughts?