Here you can find the source of isNumeric(String str)
public static boolean isNumeric(String str)
//package com.java2s; import java.util.regex.Pattern; public class Main { public static boolean isNumeric(String str) { Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$"); return pattern.matcher(str).matches(); }//w w w .ja v a2 s . c o m }