How would I format the date, if I only need it to print the month (MMM), date (DD) and the hour (HH)?

So output would look something like:

Jul 18 9

(that being July 18th 09:00).

I've tried the following

private static void createDate () {

    String startConcat = startMonth + " " + startDate + " " + startTime;
    DateFormat start = new SimpleDateFormat ("MMM DD H");

    try {
       Date date = (Date)start.parse(startConcat);
       System.out.println(date);

    } catch (ParseException e) {
    }
}

Also it doesn't seem to read my month properly too...I am getting this as an output

Sun Jan 18 09:00:00 EST 1970

any help would be deeply appreciated.

link|improve this question

71% accept rate
What are the values of startMonth, startDate and startTime? – Jim Aug 22 '11 at 12:26
@jim as shown above Jul = startMonth, 18 = startDate and 9 = startTime – FHr Aug 22 '11 at 12:27
feedback

2 Answers

up vote 2 down vote accepted

You should use the format (javadoc) method.

private static void createDate () throws Exception {
    String startConcat = startMonth + " " + startDate + " " + startTime;
    DateFormat formatter = new SimpleDateFormat ("MMM DD H");

    Date date = (Date) formatter.parse(startConcat);
    System.out.println(formatter.format(date));
}
link|improve this answer
could you elaborate on that? – FHr Aug 22 '11 at 12:27
+1: If you only want specific fields in a specific format, you print those fields. You should only use the generic toString for Date if you want all field in a generic format. – Peter Lawrey Aug 22 '11 at 12:29
Please see the updated post. – Behrang Saeedzadeh Aug 22 '11 at 12:29
thanks! that works, i see what i did wrong now, although theres still the problem of the month not accepting what startMonth is – FHr Aug 22 '11 at 12:32
2  
nvm I figured it out, thanks for the help on the formatting though! (D = day in year, I was looking for d = day in month) – FHr Aug 22 '11 at 12:55
show 5 more comments
feedback

You are defining the pattern for parsing the date, not printing the date. You will need to also use the pattern for the output;

System.out.println(start.format(date));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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