背景
最近由于需要比较两个版本号,从网上寻找的例子出现了问题,因此单独写一个不规则的版本号比较方法。
代码
如果version1大于等于version2就返回true。可以根据自己需要进行调整。
public static boolean compareVersion(String version1, String version2) {
int v1 = version1.replace(".", "").length();
int v2 = version2.replace(".", "").length();
int max = Math.max(v1, v2);
if (v1 == max) {
v2 = (int) (Math.pow(10, (v1 - v2)) * Integer.parseInt(version2.replace(".", "")));
v1 = Integer.parseInt(version1.replace(".", ""));
}
if (v2 == max) {
v1 = (int) (Math.pow(10, (v1 - v2)) * Integer.parseInt(version1.replace(".", "")));
v2 = Integer.parseInt(version2.replace(".", ""));
}
return v1 - v2 >= 0;
}