Generate Java classes from .dll

2.5k Views Asked by At

I have a device which I want to access from java. The only way to do this is using a dll library provided by the manufacturer. I have read about JNI, JNA etc. and maybe there is a tool outside which analyses the dll and generates the Java classes automatically.

Does anybody know a way of doing this?

2

There are 2 best solutions below

0
On BEST ANSWER

Finally we used jawin to generate the Java classes for accessing the the .dll. The jawin typebrowser tool was the only one that could handle the C++ .dll we were trying to access.

Unfortunately the jawin project is no longer developed. The last version is dated to early 2005.

1
On

You need something like this - JNAerator can "compile" native headers in order to generate JNA mappings, with some limited C++ support.