| Author |
Date method
|
Candy Bortniker
Ranch Hand
Joined: Mar 17, 2003
Posts: 123
|
|
|
What date method would I use to set the current date in a textfield?
|
 |
Joel McNary
Bartender
Joined: Aug 20, 2001
Posts: 1815
|
|
I'm uncertain what you mean...I can infer many questions from your question. To get the current date, just do new java.util.Date(). (or java.util.Calendar.getInstance()) For formatting the date, look at the java.text.SimpleDateFormat class. It probably will do what you need. The methods of interest are format (Date -> String) and parse (String -> Date). To set the information in the text field, use the setText(String) method.
|
Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
|
 |
Layne Lund
Ranch Hand
Joined: Dec 06, 2001
Posts: 3061
|
|
|
You can easily use the Date class to get the current date. Then use the Date.toString() method to convert it to a String to add to your TextField object.
|
Java API Documentation
The Java Tutorial
|
 |
Candy Bortniker
Ranch Hand
Joined: Mar 17, 2003
Posts: 123
|
|
I am using: I get the date with the time but I only want the date, not the time. How do I do that?
|
 |
Joel McNary
Bartender
Joined: Aug 20, 2001
Posts: 1815
|
|
Originally posted by Candy Bortniker: I am using: I get the date with the time but I only want the date, not the time. How do I do that?
If you are concerned with only displaying the date, use java.text.SimpleDateFormat. This will format the date If you don't want your Date object to carry the time at all, you can do this: but when you display the date you still will have to format it, othersie you will still get the "Wed Apr 16 00:00:00 EDT 2003" (or some such) when you call .toString() on the Date.
|
 |
 |
|
|
subject: Date method
|
|
|