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