SWT: Getting notified of a system device change (USB device connection / disconnection)

别等时光非礼了梦想. 提交于 2019-12-05 01:31:29

问题


I'm writing an SWT application which needs to sit in the system tray and pop up automatically whenever the user connects some USB device (the application serves as its control panel).

The way to do this in the native environment (win32 in this case, but I should be platform-independent ultimately) is to listen to the WM_DEVICECHANGE event, then checking if my device has been disconnected.

Googling the subject, it seems like SWT does not in fact handle this type of event. Does anyone have any idea as to how to achieve this? My fallback solution would be sampling the USB port every n seconds, looking for the device, but this is a no-no solution as far as I'm concerned...

Thanks and cheers

Shai


回答1:


EDIT: J-16 SDiZ reported that the API exists for Windows too

Here is a very good article about Access USB devices from Java applications

The described jUSB module contains a USBListener object.

Interface implemented by objects that want to monitor USB structure. The order in which these changes are reported is not necessarily going to be the order in which the changes were seen in the real world, and delays also occur.

Youre SWt object can implement this listener and do something, when the method

deviceAdded(Device dev) 

is fired




回答2:


Java does not provide direct interaction with the devices and with USB. There are several third-party libraries for Java that provide USB-related features (read/write from USB port). For example: http://www.icaste.com/ (commercial)




回答3:


Your comment for Zorglub suggests that you have some (presumably) JNI/JNA code to call the 3rd party DLL you mentioned. I assume you could also write a JNI wrapper to the Windows API where you can register to be notified for the _WM_DEVICECHANGE_ event you mentioned.




回答4:


There is a jUSB port for windows at http://www.steelbrothers.ch/jusb/



来源:https://stackoverflow.com/questions/765564/swt-getting-notified-of-a-system-device-change-usb-device-connection-disconn

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!