首页 > 编程 > Java > 正文

Java-判断字符串是否能转成数字

2019-11-06 07:15:17
字体:
来源:转载
供稿:网友
/** * 判断字符串是否能转成数字 * @param str 字符串 * @return 能转成数字返回true,不是返回false */ public boolean isNumber(String strNumber){ boolean bolResult = false; BigDecimal temp; try { temp = new BigDecimal(strNumber); bolResult = true; } catch (NumberFormatException e) { e.getStackTrace(); } return bolResult; }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表