“Comment vérifier si l'analyse en entier est possible en Java” Réponses codées

Java Vérifiez si elle est capable d'analyser Int

public static boolean isParsable(String input) {
    try {
        Integer.parseInt(input);
        return true;
    } catch (final NumberFormatException e) {
        return false;
    }
}
Zwazel

Comment vérifier si l'analyse en entier est possible en Java

// if parse is possible then it will do it otherwise compiler 
// will throw exceptions and it is a bad practice to catch all exceptions
// in this case only NumberFormatException happens
public boolean isInteger(String string) {
    try {
        Integer.valueOf(string);
        // Integer.parse(string) /// it can also be used
        return true;
    } catch (NumberFormatException e) {
        return false;
    }
}
rng70

Réponses similaires à “Comment vérifier si l'analyse en entier est possible en Java”

Questions similaires à “Comment vérifier si l'analyse en entier est possible en Java”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code