ebaccount
ebaccount

Reputation: 5051

How can Java access COM control (on windows platform) APIs

I have a COM control (on windows) that exposes a set of APIs. I have written applications in VC++ and C# and can access the APIs. Now I need to write a Java application that will use those COM APIs. Could you let me know how can I do that? Do I need to write a Java wrapper for the COM control (like JNI)?

Thanks.

Upvotes: 1

Views: 254

Answers (1)

BlairHippo
BlairHippo

Reputation: 9658

Check out Jacob.

I had to access COM controls from inside of Java, and Jacob totally saved my bacon.

Upvotes: 3

Related Questions