For all these small things the best way is to google and find out. I am sure
you will get enough hits to suffice what you need.
On 6/24/06, Madhav Bhargava <[EMAIL PROTECTED]> wrote:
There are many ways you can do it:
One way is using Apache BeanUtils with Converters registered to it. This
way
There are many ways you can do it:
One way is using Apache BeanUtils with Converters registered to it. This way
automatic conversions can happen
Again it depends on what date you want to convert- current date, arbitrary
date.
You can just go ahead and use SimpleDateFormat's format/parse methods.
I use this utility class:
package com.itCom.util;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
*
* @author Dao
*/
public class SQLDateConvertor {
/** Creates a new instance of SQLDateConvertor */
public SQLDateConvertor() {
}
public sta
Commons Validator 1.3.0 has a whole set of easy to use
validation/conversion routines:
http://tinyurl.com/g526k
DateValidator validator = DateValidator.getInstance();
java.util.Date utilDate= validator.validate("06-apr-07", "dd-MMM-yy");
java.sql.Date sqlDate = new java.sql.Date(utilDate.get
Here is a good place to see Java by example.
http://www.kickjava.com/
Bryan LaPlante
-- Original Message ---
From: temp temp <[EMAIL PROTECTED]>
To: user@struts.apache.org
Sent: Thu, 22 Jun 2006 10:24:53 -0700 (PDT)
Subject: [JAVA]Converting a string to date
> I have
try {
java.sql.Date d = new java.sql.Date(new
SimpleDateFormat("dd-MMM-yy").parse("06-apr-07").getTime());
}
catch (ParseException ex) {
}
Chris
On 6/22/06, temp temp <[EMAIL PROTECTED]> wrote:
I have a string which I want to convert into a date .
The string 06-APR-07
How can I conver
er@struts.apache.org
Subject: [JAVA]Converting a string to date
I have a string which I want to convert into a date .
The string 06-APR-07
How can I convert this date into sql date ?
Thanks
-
Yahoo! Groups gets better. Check out
I have a string which I want to convert into a date .
The string 06-APR-07
How can I convert this date into sql date ?
Thanks
-
Yahoo! Groups gets better. Check out the new email design. Plus theres much
more to come.
8 matches
Mail list logo