The Artima Developer Community
Sponsored Link

Java Answers Forum
diiference between dates

2 replies on 1 page. Most recent reply: Jul 23, 2003 5:22 AM by devendra

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
md faizan mohiuddin

Posts: 1
Nickname: mdfaizan
Registered: Jul, 2003

diiference between dates Posted: Jul 12, 2003 1:58 PM
Reply to this message Reply
Advertisement
I need the differece between two dates which contains time also in hours:MINUTES using java


Senthoorkumaran Punniamoorthy

Posts: 335
Nickname: senthoor
Registered: Mar, 2002

Re: diiference between dates Posted: Jul 13, 2003 10:07 AM
Reply to this message Reply
Use java.util.Calendar class to create the two dates you want and then what you can do is to invoke the method getTimeInMillis() to get both date in milli seconds. Once you have both dates in milli seconds you can substract one from the other. This will give you the difference between two dates in milli seconds. Then you can proceed and find out how many hrs and mins in that milli second answer

devendra

Posts: 3
Nickname: dev257
Registered: Jun, 2003

Re: diiference between dates Posted: Jul 23, 2003 5:22 AM
Reply to this message Reply
Use java.util.Date class or its objects to create the two dates you want and then what you can do is to invoke the method getTimeInMillis() to get both date in milli seconds. Once you have both dates in milli seconds you can substract one from the other. This will give you the difference between two dates in milli seconds. Then you can proceed and find out how many hrs and mins in that milli second answer

Flat View: This topic has 2 replies on 1 page
Topic: JTree Node great problem Previous Topic   Next Topic Topic: hashtable to oracle

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use