BuWanVideo/src/com/weikou/beibeivideo/util/VideoUtil.java
@@ -8,7 +8,11 @@ public static String getWatchCountShortName(String watchCount) { DecimalFormat df = new DecimalFormat("###.0"); return (StringUtils.isBlank(watchCount) ? "0" : (Integer.parseInt(watchCount)) / 10000 > 0 ? df.format(Integer.parseInt(watchCount) / 10000f) + "万" : watchCount); try { return (StringUtils.isBlank(watchCount) ? "0" : (Integer.parseInt(watchCount)) / 10000 > 0 ? df.format(Integer.parseInt(watchCount) / 10000f) + "万" : watchCount); } catch (Exception e) { } return ""; }