Here you can find the source of getNowDate()
public static Date getNowDate()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date date; public static Date getNowDate() { date = new Date(); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd"); String dateString = simpleDateFormat.format(date); return date; }// www . j a v a2 s . c o m }