Using Registry key factor I am able to find the major, minor and rev version, but I need the build version from the Registry Editor. For instance, I'd like to get the "3" in the sequence "4.5.5.3". I am using the code below to get the major, minor and rev version.
major = new Integer(rKey.getIntValue(VersionMajor));
minor = new Integer(rKey.getIntValue(VersionMinor));
rev = new Integer(rKey.getIntValue(VersionRev));
Please help me to find the Build(subversion) version in the same way as mentioned above.
If I can understand your question, I dare say you are seeking for something similar to next code snippet (not sure about right Java syntax)