aspose file tools
The moose likes Beginning Java and the fly likes Help with DateFormat!? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Help with DateFormat!?" Watch "Help with DateFormat!?" New topic
Author

Help with DateFormat!?

Kriss Masters
Greenhorn

Joined: Nov 17, 2003
Posts: 5
Why can't i compile this code?
SimpleDateFormat dayformat = new SimpleDateFormat("yyyy.MMM.dd");
GregorianCalendar day = new GregorianCalendar();
String now =dagformat.format(day);
/ kriss
Joel McNary
Bartender

Joined: Aug 20, 2001
Posts: 1815
What error are you getting? Chances are, if you read the error message, you will know what's wrong (javac is usually pretty good at telling you what's wrong....)

If you take a look, you will see that it doesn't know what "dagformat" is. This is correct. The variable that you have is "dayformat"


Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Help with DateFormat!?
 
Similar Threads
newbie needs to know how do get todays date
Date formatting
Problem with GregorianCalendar
Date query
converting date string into Calendar.Day of Year