vote up 1 vote down star

Is there a standard idiom for comparing version numbers? I can't just use a straight String compareTo because I don't know yet what the maximum number of point releases there will be. I need to compare the versions and have the following hold true:

1.0 < 1.1
1.0.1 < 1.1
1.9 < 1.10
flag

7 Answers

vote up 7 vote down check

Tokenize the strings with the dot as delimiter and then compare the integer translation side by side, begining from the left.

link|flag
This is what I suspected I'd have to resort to. This also involves looping over the tokens in the shorter of the two version strings. Thanks for confirming. – Bill the Lizard Oct 13 '08 at 18:19
and don't forget you might not always have only numbers. some apps will include build numbers, and might include things like 1.0.1b for beta/etc. – John Gardner Oct 13 '08 at 18:46
vote up 1 vote down

You need to normalise the version strings so they can be compared. Something like

import java.util.regex.Pattern;

public class Main {
    public static void main(String... args) {
        compare("1.0", "1.1");
        compare("1.0.1", "1.1");
        compare("1.9", "1.10");
        compare("1.a", "1.9");
    }

    private static void compare(String v1, String v2) {
        String s1 = normalisedVersion(v1);
        String s2 = normalisedVersion(v2);
        int cmp = s1.compareTo(s2);
        String cmpStr = cmp < 0 ? "<" : cmp > 0 ? ">" : "==";
        System.out.printf("'%s' %s '%s'%n", v1, cmpStr, v2);
    }

    public static String normalisedVersion(String version) {
        return normalisedVersion(version, ".", 4);
    }

    public static String normalisedVersion(String version, String sep, int maxWidth) {
        String[] split = Pattern.compile(sep, Pattern.LITERAL).split(version);
        StringBuilder sb = new StringBuilder();
        for (String s : split) {
            sb.append(String.format("%" + maxWidth + 's', s));
        }
        return sb.toString();
    }
}

Prints

'1.0' < '1.1'
'1.0.1' < '1.1'
'1.9' < '1.10'
'1.a' > '1.9'
link|flag
vote up 0 vote down

Perhaps have a look at Maven, they have a mechanism. Perhaps you can reuse some of the utility classes...

link|flag
vote up 0 vote down

Are the versions always constant? I mean, do the versions always follow a major.minor.release numerical pattern? If so, you can tokenize them and just compare the resulting values.

If you are unsure of the version number pattern or even of the fact that the version number is growing with every new release, that sounds like a psychic ability.

Regards

link|flag
I don't know how many points the version number will have. So, from 1.0 we could go to 1.0.1, then to 1.1, then to 1.2, and so on. – Bill the Lizard Oct 13 '08 at 18:17
I think version number under discussion are from CVS. They do have a well-defined pattern but are not fixed size. Complexity is due to the fact that the number also contains branch number. – Tahir Akhtar Oct 13 '08 at 18:18
I actually made those up. I'm really working with the version numbers from several different communications standards. At the moment I only know two of N that I need to support, so I was hoping for a flexible solution. – Bill the Lizard Oct 13 '08 at 18:28
vote up 0 vote down

I think you can say that Most Significant Part of the version number is on the left. In that case the algorithm suggested by Gizmo will work. Just break the loop on the first mis-match (not equals) and decide the result based on that comparison. If you run out of one string (with all parts so far being equal) the longer string represents the latest version.

link|flag
vote up 0 vote down

As Hans Doggen points out above, Maven does have code that addresses this problem. Specifically, have a look at the ArtifactVersion interface and the DefaultArtifactVersion implementation.

ArtifactVersion implements Comparable, so you can use the compareTo() method to determine whether a version is greater or less than another. On the whole there's not a lot of code in that package; I suspect that this could be lifted out pretty easily, assuming you can incorporate Apache-licensed code in your project (and indeed, Apache has a relatively non-restrictive open-source license).

link|flag
vote up -1 vote down

simple program

String b = "1.0.1";
String a = "1.2.3";
String a2 = a.replaceAll("\\.", "");
String b2 = b.replaceAll("\\.", "");

System.out.println(a2);
System.out.println(b2);
System.out.println(Integer.valueOf(a2) < Integer.valueOf(b2));
link|flag
That won't work when comparing version 1.0.1 to version 1.1 – Bill the Lizard Oct 17 '08 at 12:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.