aspose file tools
The moose likes Beginning Java and the fly likes SimpleDateFormat Problem 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 Bookmark "SimpleDateFormat Problem" Watch "SimpleDateFormat Problem" New topic
Author

SimpleDateFormat Problem

Kassi Hill
Greenhorn

Joined: Sep 29, 2003
Posts: 24
I am trying to format a string using the SimpleDateFormat method and it is not working. I was hoping that someone more experienced could point out my problem. Thank you.

private String assignDate;

public void setAssignDate(String aDate){
try{
SimpleDateFormat fdate = new SimpleDateFormat("MM-DD-YY");
assignDate = fdate.format(aDate);
}catch (Exception e){}
}
Jim Yingst
Wanderer
Sheriff

Joined: Jan 30, 2000
Posts: 18670
Consult the SimpleDateFormat API, and see what is the difference between m and M, d and D, y and Y, etc.


"I'm not back." - Bill Harding, Twister
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: SimpleDateFormat Problem
 
Similar Threads
Between Syntax
conversion of string into java.util.Date
primary key associated with wrong data
java.sql.SQLException: ORA-01858: a non-numeric character was found where a numeric
Difficult trying to convert a String to a Date