I have read many answers to this problem, but the answer does not solve my problem.
I am trying to parse this line:
"2013-10-07T23:21:00+01:00"
for a Date object with a simplified format:
"yyyy-MM-dd'T'HH:mm:ssZZZZZ"
but it continues to generate an error:
java.text.ParseException: persistent date: "" (at offset 0)
Note. I am trying to do this on Android, I am new.
source share