首页 > 代码库 > 比较版本号
比较版本号
1 // 比较版本号 2 public static int compareVersion(String newVersion, String currentVersion) { 3 if (TextUtils.isEmpty(newVersion)) { 4 if (TextUtils.isEmpty(currentVersion)) { 5 return 0; 6 } else { 7 return -1; 8 } 9 } else if (TextUtils.isEmpty(currentVersion)) {10 return 1;11 }12 13 String[] first = newVersion.split("\\.");14 String[] second = currentVersion.split("\\.");15 Log.d(TAG, "first: " + Arrays.asList(first) + ", second: " + Arrays.asList(second));16 17 int count = Math.min(first.length, second.length);18 for (int i = 0; i < count; i++) {19 try {20 int firstVersionNumber = Integer.parseInt(first[i]);21 int secondVersionNumber = Integer.parseInt(second[i]);22 23 if (firstVersionNumber < secondVersionNumber) {24 return -1;25 } else if (firstVersionNumber > secondVersionNumber) {26 return 1;27 }28 29 } catch (Exception ignored) {30 }31 }32 33 if (first.length < second.length) {34 return -1;35 } else if (first.length > second.length) {36 return 1;37 }38 39 return 0;40 }
比较版本号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。