Use a java.text.SimpleDateFormat.

Date d = new SimpleDateFormat("yyyyMMdd").parse("20061225", new
ParsePosition(0));

If you use a format a lot, create a static instance of the
SimpleDateFormat and just reference parse() on that object as needed.

HTH

Chris

On 10/6/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hmm...

But I need create java.util.Date object with concrete Date. Can I do this
using one row of code? Is there something like createDate(2006, 11, 25)
that returns java.util.Date?

Julius Davies <[EMAIL PROTECTED]> wrote on 07.10.2006 03:47:42:

> Hi, Vitaly,
>
> Try java.util.GregorianCalendar!
>
> // Christmas is December 25th.
> Calendar c = new GregorianCalendar( 2006, 11, 25 );
>
> // 1 second after this coming New Years:
> int year = 2007;
> int month = 0; // January is 0
> int dayOfMonth = 1;
> int hourOfDay = 0;
> int minute = 0;
> int second = 1;
> c = new GregorianCalendar( year, month, dayOfMonth, hourOfDay,
> minute, second );
>
>
> yours,
>
> Julius
>
> http://juliusdavies.ca/
>
>
> On Sat, 2006-07-10 at 02:58 +0300, [EMAIL PROTECTED] wrote:
> > Good day!
> >
> > I need sometimes to create concrete Date object. I have the function to
do
> > it now:
> >
> >       public static Date createDate(int year, int month, int day){
> >             Calendar calendar = Calendar.getInstance();
> >
> >             calendar.set(year, month, day, 0, 0, 0);
> >             calendar.set(Calendar.MILLISECOND, 0);
> >
> >             return calendar.getTime();
> >       }
> >
> > Is there such function in commons?
> >
> > Thanks!
> >
> > _____________
> > With best regards,
> > Vitaly Baranovsky
> >
> >

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

Reply via email to