I've got a tool which seems to be giving me dates without specifying the year that I need to convert and I'm using Java for the task (actually Groovy but close enough in this case). An example date is "13 Dec 12:00:00", which should refer to 12/13/2011 since the year is unspecified and it is 2011. The following Groovy script does the trick:
import java.text.*
println new SimpleDateFormat("dd MMM HH:mm:ss").parse("13 Dec 12:00:00")
My problem with this script is that SimpleDateFormat seems to be leaving the year unset at 1970 after conversion. I could explicitly set it to 2011 because that is the current year but there seems to be some lag between current year and the dates set so when New Years comes this script will get it wrong for that lag time. How can I fix it up simply? One solution would be to check if the date with current year is after now then use the last year but I'm hoping a simpler solution exists (or state that's the simplest if not).
// Method 1 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Date dateWithoutTime = sdf. parse(sdf. format(new Date())); // Method 2 Calendar cal = Calendar. getInstance(); cal.
parse() The Date. parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC or NaN if the string is unrecognized or, in some cases, contains illegal date values (e.g. 2015-02-31). Only the ISO 8601 format ( YYYY-MM-DDTHH:mm:ss.
Modern answer (valid from 2014 and on): I first declare an auxiliary method:
private static LocalDateTime parseWithDefaultYear(String stringWithoutYear, int defaultYear) {
DateTimeFormatter parseFormatter = new DateTimeFormatterBuilder()
.appendPattern("dd MMM HH:mm:ss")
.parseDefaulting(ChronoField.YEAR, defaultYear)
.toFormatter(Locale.ENGLISH);
LocalDateTime dateTime = LocalDateTime.parse(stringWithoutYear, parseFormatter);
return dateTime;
}
Then we can do:
ZoneId zone = ZoneId.of("America/Argentina/Jujuy");
String stringWithoutYear = "13 Dec 12:00:00";
LocalDateTime now = LocalDateTime.now(zone);
int defaultYear = now.getYear();
LocalDateTime dateTime = parseWithDefaultYear(stringWithoutYear, defaultYear);
if (dateTime.isAfter(now)) { // in the future
defaultYear--;
dateTime = parseWithDefaultYear(stringWithoutYear, defaultYear);
}
System.out.println(dateTime);
When running today (June 2018) this prints:
2017-12-13T12:00
You may ask why I want to parse a second time with a new formatter in case the first attempt gives a date in the future. Wouldn’t it be simpler just to subtract 1 year? While java.time
certainly has good support for this, I chose a second parsing to handle the corner case of February 29 in leap years better. Imagine the code is run in the first couple of months of 2021 and the string is 29 Feb 12:00:00
. Since 2021 is not a leap year, Java will choose February 28, the last day of the month. Subtracting 1 year would give February 28, 2020, which would be incorrect since 2020 is a leap year. Instead my new parsing with 2020 as default year gives the correct February 29, 2020.
Messages:
Date
, SimpleDateFormat
, Calendar
and GregorianCalendar
are now long outdated, so I recommend avoiding them. The modern classes generally are more programmer friendly and come with fewer unpleasant surprises.Locale.ENGLISH
.Since you consider it safe to assume that the date is within the last year, I invite you to consider whether is it also safe to assume it’s within the last 4, 6 or 8 months, for example? If so, testing whether this is the case will give you a better validation:
if (dateTime.isBefore(now.minusMonths(5))) {
throw new IllegalArgumentException("Not within the last 5 months: " + stringWithoutYear);
}
You can use java.util.Calendar
to get the current year, like in the below example.
Calendar.getInstance ().get (Calendar.YEAR);
Example snippet
OP elaborated his question and therefor this snippet has been rewritten to match his needs.
public static String fixDate (String data) throws Exception {
SimpleDateFormat dateInputFormat = new SimpleDateFormat("dd MMM HH:mm:ss");
SimpleDateFormat dateOutputFormat = new SimpleDateFormat("yyyy dd MMM HH:mm:ss");
Calendar currentCal = Calendar.getInstance ();
Calendar parsedCal = Calendar.getInstance ();
int CAL_YEAR = Calendar.YEAR;
parsedCal.setTime (dateInputFormat.parse (data));
parsedCal.set (CAL_YEAR, currentCal.get (CAL_YEAR));
if (parsedCal.after (currentCal))
parsedCal.set (CAL_YEAR, parsedCal.get (CAL_YEAR) - 1);
// Date parsedDate = parsedCal.getTime ();
return dateOutputFormat.format (parsedCal.getTime ());
}
public static void main (String[] args) throws Exception {
System.out.println (fixDate ("13 Dec 12:00:00"));
System.out.println (fixDate ("31 Dec 12:00:00"));
}
output
2011 13 Dec 12:00:00
2010 31 Dec 12:00:00
Remember to watch out for thrown Exceptions
!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With