Here you can find the source of convertLongToString(long value)
public static String convertLongToString(long value)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertLongToString(long value) { return Long.toString(value); }// w ww . j ava2 s.c om }