You have created an object SimpleDateFormat
but are not using it. Provide Locale
this class and see the result.
Calendar cal = Calendar.getInstance();
Date date = cal.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy a", Locale.JAPANESE);
System.out.println("Start Time "+ sdf.format(date));
Exit: Start Time 10/16/2015 午後
H:mm a
DateFormat MM/dd/yyyy a
, , Start Time 13:01 午後
, Date Formats
Java.