Here you can find the source of toLong(String s)
public static Long toLong(String s)
//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(); } }