java - What about TimeFormat? Converting Timestamp -


how format java.sql timestamp displaying?

what timeformat, how can convert timestamp string showing time?

this 1 way it...

new simpledateformat("hh:mm:ss")     .format(new date(timestamp.gettime())); 

edit: turns out simpledateformat can format timestamps easier:

new simpledateformat("hh:mm:ss")     .format(new timestamp(system.currenttimemillis())); 

Comments

Popular posts from this blog

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -