How can I create a Timestamp with the date 23/09/2007?
|
|
By
|
||
|
|
|
|
What do you mean timestamp? If you mean milliseconds since the Unix epoch:
If you want an actual java.sql.Timestamp object:
|
||||||
|
|
|
According to the API the constructor which would accept year, month, and so on is deprecated. Instead you should use the Constructor which accepts a long. You could use a Calendar implementation to construct the date you want and access the time-representation as a long, for example with the getTimeInMillis method. |
|||
|
|
|
|
What about this? Timestamp timestamp = Timestamp.valueOf("2007-09-23 10:10:10.0"); |
||||
|
|
|
You could also do the following:
|
||||||||
|
