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 a string whi
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
For oracle:
to_date('06-APR-07', 'DD-MON-YY')
but this is more of a sql question than a struts question ;)
Andy Miller
IS Designer
Butte College
530.895.2946
-Original Message-
From: temp temp [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 22, 2006 10:25 AM
To: user@struts.apache.org
Su
7 matches
Mail list logo