Java Integer Create toInteger(String s)

Here you can find the source of toInteger(String s)

Description

to Integer

License

Apache License

Declaration

public static Integer toInteger(String s) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static Integer toInteger(String s) {
        if (isEmptyTrim(s)) {
            return 0;
        }/*w  ww.  j a v a 2 s  .c om*/
        return Integer.valueOf((int) val(s.trim()));
    }

    public static boolean isEmptyTrim(String valore) {
        return (valore == null || valore.trim().equals(""));
    }

    /**
     * Restituisce un double ricavato dalla stringa <code>s</code> o zero se non
     * riesce ad interpretarlo correttamente
     */
    public static double val(String s) {
        double n;
        try {
            n = Double.parseDouble(s);
        } catch (Exception e) {
            n = 0;
        }
        return n;
    }

    /**
     * Restiutisce la stringa s senza spazi iniziali e finali
     * Se s e' null o stringa vuota, restituisce una stringa di lunghezza 0
     */
    public static String trim(String s) {
        return s == null || s.trim().equals("") ? "" : s.trim();
    }
}

Related

  1. toInteger(String integer)
  2. toInteger(String numeric)
  3. toInteger(String numericString)
  4. toInteger(String pString)
  5. ToInteger(String s)
  6. toInteger(String s)
  7. toInteger(String s, int defValue)
  8. toInteger(String str)
  9. toInteger(String str)