Fortunately is it possible to use in java with JNA. You must find k8090d.dll because velleman.kits.dll provided don’t working.
Import dll in java like as library (exemple with vm option "-Djava.library.path=“C:/folderWithContainDll”)
Create interface :
import com.sun.jna.Library;
import com.sun.jna.ptr.IntByReference;
public interface IUsbRelais extends Library {
public IntByReference OpenDevice(String szPort );
public void CloseDevice(IntByReference hDevice);
public Boolean SendCommand( IntByReference hDevice, int cmd, int mask, int hparam, int lparam );