How do I formate a java.sql Timestamp to my liking ? ( to a string, for display purposes)
|
|
|||||||||||||||||
|
|
Use String.format (or java.util.Formatter):
|
|||
|
|
|
For this particular question, the standard suggestion of I would strongly recommend looking at Joda for anything like this. Why ? It's a much richer and more intuitive time/date library for Java than the current library (and the basis of the up-and-coming new standard Java date/time library, so you'll be learning a soon-to-be-standard API). |
|||||||
|
|
If you're using MySQL and want the database itself to perform the conversion, use this: If you prefer to format using Java, use this:
|
|||
|
|
|
Use a |
|||
|
|
|
String timeFrSSHStr = timeFrSSH.toString(); |
|||||
|