Parsing DateTimes can be done through the DateFormat class. Here's a snippet I found online that should help you out in your case:
DateFormat dfm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
Date a = dfm.parse("2007-02-26 20:15:00 +0200");
(From:
Date and time in Java)
You'll probably have to adjust your format string to more closely match the format you're parsing, but the methods to use should be similar
Here's a link to the DateFormat documentation:
Java 2 Platform SE v1.4.2