Here you can find the source of longToString(Long value)
public static String longToString(Long value)
//package com.java2s; public class Main { public static String longToString(Long value) { if (value == null) { return "00000000000000000000"; }/* w w w .j a va2s. c o m*/ return String.format("%020d", value); } }