I'm working with a JAR library, but a native C++ port (as a DLL) isn't available yet.
I need to access this functionality from VBA, and I'm considering three options:
- Wait for the native port to be completed.
- Access the JAR library from VBA through a bridge (requiring an installed JRE).
- Compile the JAR into a native DLL using GCJ, then call it from VBA (although I think this is practically unfeasible).
I believe option 1 would be the easiest, though it requires waiting. Option 3 seems impractical.
Could you provide any insights or suggestions regarding option 2? Specifically, I'm interested in setting up a reliable bridge between VBA and the JAR library.
Thanks for your assistance!