Here you can find the source of getTodateString()
public static String getTodateString()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static SimpleDateFormat yyyyMMddHH_NOT_ = new SimpleDateFormat("yyyyMMdd"); public static String getTodateString() { String str = yyyyMMddHH_NOT_.format(new Date()); return str; }//from w ww .j a va2 s. c om }