Java Long Number Create toLong(String s)

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

Description

to Long

License

Apache License

Declaration

public static Long toLong(String s) 

Method Source Code

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

public class Main {
    public static Long toLong(String s) {
        if (isEmptyTrim(s)) {
            return 0L;
        }/*from w ww.  j av  a2  s  .  c  om*/
        return new Long((long) 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. toLong(String param)
  2. toLong(String parameter)
  3. toLong(String s)
  4. toLong(String s)
  5. toLong(String s)
  6. toLong(String s)
  7. toLong(String s)
  8. ToLong(String s)
  9. toLong(String s, long defValue)