File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes convert date format Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply locked New topic
Author

convert date format

Nisha Kala
Greenhorn

Joined: Nov 17, 2010
Posts: 21
hi all,
can anyone tell how to convert string as-> Tue Nov 02 00:00:00 IST 2010 to date format of same type or to get date in ist format in java
Pratik D mehta
Ranch Hand

Joined: Jul 29, 2010
Posts: 121

The format already is giving you date if you want it in another format use Calendar class
If you want some thing like 22/5/2010 .
or anything else
The date is already in the IST form .
If you want some one to enter the string and than you want to format the part user entered
Use a method


Understanding is Everything - Peter Lord
Mohamed Sanaulla
Bartender

Joined: Sep 08, 2007
Posts: 2928
    
  15

Nisha Kala wrote:hi all,
can anyone tell how to convert string as-> Tue Nov 02 00:00:00 IST 2010 to date format of same type or to get date in ist format in java


I had told about SimpleDateFormat in my reply to other query. You can have a look at the API for SimpleDateFormat: http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

Edit: Also the String which you are going to parse in to Date should be in the required format other wise it will throw ParseException. For example- You have a String in- 10-11-2010 format and then try to parse it to- Tue Nov 02 00:00:00 IST 2010 will result in an exception.

Mohamed Sanaulla | My Blog
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32708
    
    4
mohamed sanaullah wrote:[ . . . my reply to other query. . . .
Thank you for drawing that to our attention. I shall close this thread as a duplicate.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: convert date format
 
Similar Threads
Timezone Conversion
Date Format Issue
Doubt in SimpleDateFormat
Using java.util.Date for comparison
Convert date format to timestamp