Geo
Geo

Reputation: 96927

Is there any COM library for Java that works well?

I'm rewriting a script that uses COM to automate a windows application, and I'd like to rewrite it in Java. The thing is, the COM libraries seem a little outdated, and I don't want to waste time with code that doesn't work. Is there anything you tried and worked?

Upvotes: 3

Views: 2297

Answers (1)

William Brendel
William Brendel

Reputation: 32199

Have you looked at JACOB? Last updated June 8, 2009.

JACOB is a JAVA-COM Bridge that allows you to call COM Automation components from Java. It uses JNI to make native calls to the COM libraries. JACOB runs on x86 and x64 environments supporting 32 bit and 64 bit JVMs

Upvotes: 6

Related Questions