Here you can find the source of int2long(int tInt)
public static long int2long(int tInt)
//package com.java2s; public class Main { public static long int2long(int tInt) { return Long.valueOf(String.valueOf(tInt)).longValue(); }/*from w w w . ja v a 2 s .c o m*/ }