I wrote the following code
Date d = new Date();
CharSequence s = DateFormat.format(\"MMMM d, yyyy \", d.getTime());
But is asking me para
I am providing the modern answer.
To get the current date:
LocalDate today = LocalDate.now(ZoneId.of("America/Hermosillo"));
This gives you a LocalDate
object, which is what you should use for keeping a date in your program. A LocalDate
is a date without time of day.
Only when you need to display the date to a user, format it into a string suitable for the user’s locale:
DateTimeFormatter userFormatter
= DateTimeFormatter.ofLocalizedDate(FormatStyle.LONG);
System.out.println(today.format(userFormatter));
When I ran this snippet today in US English locale, output was:
July 13, 2019
If you want it shorter, specify FormatStyle.MEDIUM
or even FormatStyle.SHORT
. DateTimeFormatter.ofLocalizedDate
uses the default formatting locale, so the point is that it will give output suitable for that locale, different for different locales.
If your user has very special requirements for the output format, use a format pattern string:
DateTimeFormatter userFormatter = DateTimeFormatter.ofPattern(
"d-MMM-u", Locale.forLanguageTag("ar-AE"));
13-يول-2019
I am using and recommending java.time, the modern Java date and time API. DateFormat
, SimpleDateFormat
, Date
and Calendar
used in the question and/or many of the other answers, are poorly designed and long outdated. And java.time is so much nicer to work with.
Yes, java.time works nicely on older and newer Android devices. It just requires at least Java 6.
org.threeten.bp
with subpackages.java.time
was first described.java.time
to Java 6 and 7 (ThreeTen for JSR-310).