Here you can find the source of getSysTimeYMDHMS2()
public static String getSysTimeYMDHMS2()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getSysTimeYMDHMS2() { return new SimpleDateFormat("yyyyMMddHHmmss").format(new Date(System.currentTimeMillis())); }/*from www. j av a 2 s . com*/ }