Here you can find the source of LongToStr(long nValue)
public static String LongToStr(long nValue)
//package com.java2s; //License from project: Apache License public class Main { public static String LongToStr(long nValue) { return new Long(nValue).toString(); }//w w w . j ava2s .c om }