Is it possible to get system date with time 00:00:00,below is the code i am using--
DateFormat dateFormat = new SimpleDateFormat("MMMM dd, yyyy");
java.util.Date date3 = new java.util.Date();
output-Thu jul 10 10:31:12 EDT 2014
I want the result like this----Thu jul 10 00:00:00 EDT 2014
it should be in Date format not in String. please help me out.