使用try-catch:直接尝试将字符串转换为int类型,如果成功转换则返回true,否则捕获NumberFormatException异常并返回false。 publicbooleanisNumeric(Stringstr){try{Integer.parseInt(str);returntrue;}catch(NumberFormatExceptione){returnfalse;}} 1. 2. 3. 4. 5. 6. 7. 8. 使用Java自带的Character类的方法isDigit(...