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