Here you can find the source of getTodaysDate()
public static String getTodaysDate()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getTodaysDate() { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("YYYYMMdd-HHmmss"); return sdf.format(date); }/*from w w w. j a va 2 s.co m*/ }