表示数值的字符串-过测试用例答案:4行代码调用java源码解答
表示数值的字符串
http://www.nowcoder.com/questionTerminal/e69148f8528c4039ad89bb2546fd4ff8
public static boolean isNumeric(String str) { try { Integer.valueOf(str); return true; }catch (NumberFormatException e1){ return false; } }