Android String Parse isInt(String str)

Here you can find the source of isInt(String str)

Description

is Int

License

Open Source License

Declaration

public static boolean isInt(String str) 

Method Source Code

//package com.java2s;
/**/*w  w  w  .  java 2 s .  c o  m*/
 * Android Micro Web Server
 * Copyright (C) 2011  ScR4tCh
 * Contact scr4tch@scr4tch.org

 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public License along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static boolean isInt(String str) {
        try {
            Integer.parseInt(str);
        } catch (NumberFormatException nfe) {
            return false;
        }
        return true;
    }
}

Related

  1. isDouble(String str)
  2. isIDCard(String str)
  3. isInteger(String input)
  4. isInteger(String str)
  5. isIntegral(String str)
  6. isNumeric(String str)