Java tutorial
//package com.java2s; //License from project: Apache License import android.text.TextUtils; public class Main { /** * Returns <tt>true</tt> if input String is not empty and Numeric. * * @param str * @return */ public static boolean isNumeric(String str) { return !TextUtils.isEmpty(str) && TextUtils.isDigitsOnly(str); } }