码迷,mamicode.com
首页 > 其他好文 > 详细

比较版本号

时间:2016-09-28 19:20:40      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 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     }
View Code

 

比较版本号

标签:

原文地址:http://www.cnblogs.com/fans4-334/p/5917371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!