IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Win a copy of JBoss AS 5 Development this week in the JBoss forum
or Spring Dynamic Modules in Action in the Spring forum!
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Beginning Java
 
RSS feed
 
New topic
Author

Get timestamp difference in hours and minutes

dianna goldfarb
Greenhorn

Joined: May 12, 2008
Messages: 2

Hello,

I have 2 Timestamp objects that I want to calculate the difference in minutes and seconds.

Timestamps are in the form of '2009-06-29 10:38:02.128459'

There is a TimeStamp class that have a difference method, but I am not sure how to use this.

Thank you!

-dianna
Michael Angstadt
Ranch Hand

Joined: Jun 17, 2009
Messages: 73

The Timestamp class(es) have nothing to do with what you want to do, You need to use the Date and DateFormat classes.

Mark Vedder
Ranch Hand

Joined: Dec 17, 2003
Messages: 618

You can take a look at these JavaWorld articles: Calculating Java dates and Working in Java time : Learn the basics of calculating elapsed time in Java - they do a nice job of explaining Date math in Java. Assuming you are using java.sql.Timestamp objects, the disscussion in those articles apply since the java.sql.Timestamp class extends the java.util.Date class.
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Beginning Java
 
RSS feed
 
New topic
MyEclipse Enterprise Workbench