Date method
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
What date method would I use to set the current date in a textfield?
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
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.
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.
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
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.
Candy Bortniker
Ranch Hand
Posts: 123
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
I am using:
I get the date with the time but I only want the date, not the time. How do I do that?
I get the date with the time but I only want the date, not the time. How do I do that?
posted 22 years ago
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.
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
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.
Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
| joke time: What is brown and sticky? ... ... ... A stick! Use it to beat this tiny ad! The new gardening playing cards kickstarter is now live! https://www.kickstarter.com/projects/paulwheaton/garden-cards |








