Is it possible to format a date time in Java using the SimpleDateFormat class to give the timezone part of a date without having the +0000 after it.

Edit

We are changing the Default Timezone within Java as follows:

SimpleTimeZone tz = new SimpleTimeZone(0, "Out Timezone");        
TimeZone.setDefault(tz);

Unfortunately, I am in no position to remove this code. I would hazard a guess at the whole system stopping working. I think the initial author put this in to work around some day light saving issues.

With this in mind, I want to format the date as:

2011-12-27 09:00 GMT

or

2011-12-27 09:00 BST

I can only get the SimpleDateFormat to output as:

2011-12-27 09:00:00 GMT+00:00

which uses the format string yyyy-MM-dd HH:mm:ss z

I cannot see anywhere where the simple timezone has any reference to winter time (GMT) id or summer time id (BST).

Any thoughts?

Thanks

Andez

link|improve this question

71% accept rate
System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z").format(new Date())); for me just returns 2011-11-22 13:42:16 GMT. Does that line display the offset for you as well? – berry120 Nov 22 '11 at 13:44
@berry120 - yes that works. It could be an issue with the JIDE components I am using the SimpleDateFormat for then by the looks of it. Will investigate a bit more. Put this on as an answer and I will accept it. Thanks Andez. – Andez Nov 22 '11 at 13:57
It prints GMT+offset for me as well, on both JDK 1.7.0 and 1.6.0_23 in Eclipse Indigo SR1 on Windows 7 x64. I'm not sure why others don't get +offset and how to get rid of it. – BalusC Nov 22 '11 at 14:24
@BalusC I think it happens if the JDK doesn't know the name of your timezone - in which case it defaults to displaying GMT offset. – sudocode Nov 22 '11 at 15:01
@sudo: Ah that makes sense. I'm at BOT (GMT-4). Berry indeed lives in UK (which is GMT already) and you probably also? – BalusC Nov 22 '11 at 15:03
show 2 more comments
feedback

4 Answers

Since I cannot reproduce this problem on my computer. I guess this would relate about localization. Try this

System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z",Locale.US).format(new Date()));

Hope this helps.

link|improve this answer
Localisation - yep, it looks like it. I have updated the question with some more information since you all mentioned it. – Andez Nov 22 '11 at 15:27
glad that it helps :) – Surasin Tancharoen Nov 22 '11 at 15:55
I think you really have to change "out timezone" to something correct like "America/Los_Angeles". If you want to avoid daylight saving, the new SimpleTimeZone(0, "America/Los_Angeles") constructor already void that. Read its api doc. – Surasin Tancharoen Nov 22 '11 at 16:28
Thanks Surasin. Will check it out – Andez Nov 23 '11 at 16:52
feedback

System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z").format(new Date())); for me just returns 2011-11-22 13:42:16 GMT - so appears to work as you wish. Looks like it might be a problem elsewhere, you shouldn't need to create your own formatter class though.

link|improve this answer
Yes. The finger of blame is now pointed back at us (not me). There is part of the system which calls a TimeZone.setDefault(new SimpleTimeZone(0, "our own name"). I have inherited this and I am not too sure what the way forward is. :-( Andez – Andez Nov 22 '11 at 15:13
feedback

I think that you are using the correct pattern for your requirements, however the JDK doesn't know the name of your timezone, so it switches over to using a GMT offset value instead.

When I format a date using your pattern, I get "GMT" for the timezone part.

What does TimeZone.getDefault().getDisplayName() give you? For me, I get "Greenwich Mean Time".

link|improve this answer
Thanks sudocode... It helped identify the problem as there is some nasty code in there to set the default timezone to a custom timezone. – Andez Nov 22 '11 at 15:20
feedback
up vote 0 down vote accepted

Not an elegant solution at all but it works for us. I had to create a custom implementation for DateFormat/SimpleDateFormat. This looks like something as follows:

static {
    // this would be initialized like something as follows when the application starts
    // which causes the headaches of SimpleDateFormat not to work...
    SimpleTimeZone tz = new SimpleTimeZone(0, "Out Timezone");             
    TimeZone.setDefault(tz);  
}

// therefore this class will workaround the issue, 

public class OurOwnCustomDateFormat
    extends SimpleDateFormat {

    /** The pattern to use as the format string. */
    protected String pattern;

    public OurOwnCustomDateFormat(String pattern) {
         super(pattern);
         // store the pattern
         this.pattern = pattern;
    }

    @Override
    public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition pos) {

         // custom implementation to format the date and time based on our TimeZone            
         toAppendTo.insert(pos.getBeginIndex(), "the date with our custom format calculated here");
         return toAppendTo; 
    }
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.