Hi All, Need some help here... I am returning a date field from an oracle query and it returns in the format: 1958-06-11 00:00:00.0 is there a way in java to convert this into 11/06/1958? Thanks a million! Cheers, Wai Meng
Originally posted by wai meng: Hi All, Need some help here... I am returning a date field from an oracle query and it returns in the format: 1958-06-11 00:00:00.0 is there a way in java to convert this into 11/06/1958? Thanks a million! Cheers, Wai Meng
Dear Wai Meng, Of course it is possible to format dates into whatever format you want. The easiest way to do this is by using the java.text.SimpleDateFormat class. It gives you the possibility to set the format when creating an instance of the class, while the format(Date d) function returns a String with the date according to the set format. I wasn't sure if in your case you had an object of type Date or of type String, with the date from the Oracle database. If you have a Date object called dDate, then this is about all you need to do to print the date in your preferred format:
If you have a String with the date in it, say sDate, you'll have to parse it to a Date first, before you can do the above. The parsing can be done with the java.text.SimpleDateFormat too. Though in this case you'll need a second formatter, this time with the format of the Oracle date:
Hope this helps, Tim
wai meng
Greenhorn
Joined: Sep 16, 2001
Posts: 4
posted
0
Thanks for the info, I have looked up the reference but an not very sure how to begin to use it... I tried to look for sample codes but to no avail... can someone help? Thanks again..