Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So from what I have found I would have to write a swap method? Only problem is from the codes I have been looking over it is a bit over my head.

I am getting a value from a xml file, for example "20120411" What I would like it to be once passed to another string is April 11, 2012, or at least 04/11/12. I have found simple ways to do this in just about every other language besides java. If its simple enough for someone to show me the code to accomplish this, or point me in the right direction I would appreciate it!

share|improve this question
You will find everything you need in java.lang and text packages. Now go do the homework code yourself .. tiger! – RHT Sep 23 '11 at 16:03
thanks for the reference – IceSteve Sep 23 '11 at 17:19

3 Answers

up vote 4 down vote accepted

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();
      }
   }
}
share|improve this answer
thanks ill check it out – IceSteve Sep 23 '11 at 15:54
For a quick result this would be the way to go. Just keep in mind that SimpleDateFormat is not thread-safe. – Clockwork-Muse Sep 23 '11 at 15:54
That's true. For example, take a look to this link from the Java Tutorial. There's inside a easy to understand example about how to use the SimpleDateFormat class. – I.Cougil Sep 23 '11 at 15:59
thanks for all the info guys – IceSteve Sep 23 '11 at 16:16

This takes "20080105" and returns "01/05/2008".

StringBuffer b = new StringBuffer(dateStr);
b.append(b.substring(0, 4)).delete(0, 4); // put year at end
b.insert(2, "/");
b.insert(5, "/");
share|improve this answer

If all you want to do it rearrange characters you can do a replace:

 String dateString = "20120411".replaceAll("\\d{2}(\\d{2})(\\d{2})(\\d{2})", "$2/$3/$1");  // outputs: 04/11/12
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.