Write code to check if a string is Numeric
//package com.book2s; public class Main { public static void main(String[] argv) { String str = "book2s.com"; System.out.println(isNumeric(str)); }//from w w w.j a v a2 s. com public static boolean isNumeric(String str) { for (int i = str.length(); --i >= 0;) { if (!Character.isDigit(str.charAt(i))) { return false; } } return true; } }