去除字符串数字中的小说点变成整数
/** * 去除字符串数字中的小说点变成整数
* @param value
* @return
*/
public static Integer removePointsToInt(String value) {
if (isBlank(value)) {
return 0;
}
Integer valueInt = 0;
if (value.contains(".")) {
value = value.substring(0, value.indexOf("."));
valueInt = Integer.valueOf(value);
} else {
valueInt = Integer.valueOf(value);
}
return valueInt;
}
以上是 去除字符串数字中的小说点变成整数 的全部内容, 来源链接: utcz.com/z/515595.html