| Author |
String to Timestamp conversion
|
amit prajapati
Greenhorn
Joined: Oct 18, 2011
Posts: 2
|
|
Hi,
I am facing problem in converting String to Time stamp.
How can i convert into Timestamp from String object when i Update the DB ?
Regards,
Amit P.
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26193
|
|
|
You can use SimpleDateFormat in Java to build a Date object (which parses your string) and then convert that to a Timestamp.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
steve davis
Greenhorn
Joined: Oct 20, 2011
Posts: 3
|
|
|
Use a SimpleDateFormat with an appropriate format string (be careful to use the correct format letters, uppercase and lowercase have different meanings!).
|
 |
 |
|
|
subject: String to Timestamp conversion
|
|
|