|
@@ -31,8 +31,9 @@ public class AppendUtils {
|
|
|
stringBuilder.append("K" + split[0]);
|
|
|
if (split.length > 1) {
|
|
|
stringBuilder.append("+");
|
|
|
- Integer integer = Integer.parseInt(split[1]) * 100;
|
|
|
- stringBuilder.append(integer);
|
|
|
+ double end = Double.parseDouble(("0."+split[1]));
|
|
|
+ int num=(int) (end * 1000);
|
|
|
+ stringBuilder.append(num);
|
|
|
}
|
|
|
}
|
|
|
return stringBuilder.toString();
|