Look at using a SimpleDateFormat object. There are many many examples of how to use this in this forum, and so a little searching will bring you riches. If you look this over and still are stuck, then you should consider showing us your attempt and tell us what's not working for you, and we'll likely be able to easily help you.
A format String to try includes "yyyyMMdd". You'd construct your SDF object with this String, parse the xml String and thereby turn it into a Date object. You'd use a second SDF object with a different pattern String, perhaps "MMMM dd, yyyy" to format the Date into a different String. Again, give it a try!
e.g.,
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class SdfTest {
public static void main(String[] args) {
SimpleDateFormat sdfInput = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat sdfOutput = new SimpleDateFormat("MMMM dd, yyyy");
try {
Date date = sdfInput.parse("20120411");
String output = sdfOutput.format(date);
System.out.println(output);
} catch (ParseException e) {
e.printStackTrace();
}
}
}