I have a date format coming in, and I'm uncertain the best way to ingest it with Java.
the date format looks like this.
2019-09-19T23:59:59-03:00
I get that it's Year, Month, Day, Hours, Minutes, Seconds
And I think the -03:00 is a GMT offset.
normally that is denoted like this:
-0300, is it not?
Should this be handled with a SimpleDateFormat, something like this?
new SimpleDateFormat("yyyy-MM-ddTHH:mm:ssZ");
or would something else be more appropriate?
Many Thanks!


Sign In
Create Account


Back to top









