i have tried some thing like this
package com.poc;
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class GetCurrentDateTime {
public static void main(String[] args) {
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//get current date time with Date()
Date date = new Date();
System.out.println(dateFormat.format(date));
//get current date time with Calendar()
Calendar cal = Calendar.getInstance();
System.out.println(dateFormat.format(cal.getTime()));
}
}
and my out put is : 2013-01-07 17:12:27 but want the output to be like this 2013-Jan-07 17:12:27 PM
how to do this in java?
Best Regards
your format should be
07-Jan-13 07:20:02 PM
07-Jan-13 19:20:02