|
I'm a
bit confused, I am using the java.util.Date as follows and it works fine in JDK
1.1.7B and jsdk2.1. How would I change this to make it current since
java.util.Data is interacting with Calendar?
Tom
Kochanowicz
Note:
I would have posted seperately, but for some reason most of my posts don't go
through.
Calendar calendar1;
SimpleDateFormat formatter1; java.util.Date todaysDate; // Format todaysDate
calendar1 = Calendar.getInstance(); formatter1 = new SimpleDateFormat("MM/dd/yy"); formatter1.setTimeZone(java.util.TimeZone.getDefault()); // bug fix so not PST & is CST todaysDate = calendar1.getTime();
|
- Deprecation of java.util.Date methods Antonio Villafana
- Re: Deprecation of java.util.Date methods Madhavi Karanam
- Re: Deprecation of java.util.Date methods J. Michael Finn
- Re: Deprecation of java.util.Date methods Martin Kuba
- Re: Deprecation of java.util.Date methods Andras Balogh
- Re: Deprecation of java.util.Date methods Andrew Maxbeard
- Re: Deprecation of java.util.Date methods Tom Kochanowicz
- Re: Deprecation of java.util.Date methods Chris Pratt
- Re: Deprecation of java.util.Date methods Christian Damsgaard
- Re: Deprecation of java.util.Date methods Antonio Mancuso
