JSTL has the <fmt:formatDate> tag. If you want to do it in Java, rather than 
your JSP, you can use SimpleDateFormat.

Be aware that SimpleDataFormat is not thread safe, so don't assign it to a 
static field or use it in a singleton. If you use it as an instance field on an 
Action you'll be safe, since Actions are created per request.

If you want a thread safe version of SimpleDateFormat, Jakarta Commons lang has 
FastDateFormat: http://commons.apache.org/lang/

Brad Cupit
Louisiana State University - UIS
e-mail: [EMAIL PROTECTED]
office: 225.578.4774


-----Original Message-----
From: Adam Hardy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 08, 2008 12:11 PM
To: Struts Users Mailing List
Subject: date conversion

Hi

quick question, I can't find any specific mention of what I want so I assume I 
have to code my own Converter.

I need a date in the ISO format YYYY-MM-DD

There is no converter that I can configure in the struts package, is there?

Thanks
Adam

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to