Here you can find the source of getMillon(long time)
public static String getMillon(long time)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { public static String getMillon(long time) { return new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss").format(time); }/*w w w. j ava2 s . com*/ }