Hi, Vitaly,

Try the following code:

DateFormat df = new SimpleDateFormat( "yyyy-MM-dd/HH:mm:ss.SSS" );
Date d = new GregorianCalendar( 2006, 11, 25 ).getTime();
System.out.println( df.format( d ) );
System.out.println( d );

Prints out:
======================
2006-12-25/00:00:00.000
Mon Dec 25 00:00:00 PST 2006

It might print a different timezone than "PST" for you.

If you look inside the actual source code for java.util.GregorianCalendar, 
you'll see this constructor:

public GregorianCalendar(int year, int month, int dayOfMonth) {
  this(year, month, dayOfMonth, 0, 0, 0, 0);
}

Those zeroes are for hour, minute, second, millisecond.

yours,

Julius


On Sat, 2006-07-10 at 17:38 +0300, [EMAIL PROTECTED] wrote:
> This code return Date object with current time part include milliseconds.
> 
> For example, is I run this code now, it returns me Date object "2006.11.25
> 17:36:06 116ms", because 17:36 o'clock now
> 
> Julius Davies <[EMAIL PROTECTED]> wrote on 07.10.2006 17:23:49:
> 
> > Date d = new GregorianCalendar( 2006, 11, 25 ).getTime();
> >
> >
> > On Sat, 2006-07-10 at 04:05 +0300, [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]
> > > > >
> > > > --
> > > > Julius Davies
> > > > Senior Application Developer, Technology Services
> > > > Credit Union Central of British Columbia
> > > > http://www.cucbc.com/
> > > > Tel: 416-652-0183
> > > > Cel: 647-232-7571
> > > >
> > > > 1441 Creekside Drive
> > > > Vancouver, BC
> > > > Canada
> > > > V6J 4S7
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > --
> > Julius Davies
> > Senior Application Developer, Technology Services
> > Credit Union Central of British Columbia
> > http://www.cucbc.com/
> > Tel: 416-652-0183
> > Cel: 647-232-7571
> >
> > 1441 Creekside Drive
> > Vancouver, BC
> > Canada
> > V6J 4S7
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
-- 
Julius Davies
Senior Application Developer, Technology Services
Credit Union Central of British Columbia
http://www.cucbc.com/
Tel: 416-652-0183
Cel: 647-232-7571

1441 Creekside Drive
Vancouver, BC
Canada
V6J 4S7


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

Reply via email to