Is there any way for me to get the version of an assembly or application in Java?
For example, I have a .NET .dll file located in Program Files. I normally call `loadLibrary' on this .dll so I can invoke JNI methods in C++.
System.loadLibrary("MyJniAssembly");
Can someone point me in the right direction? Thanks.