• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

calcuate days in a calender.era or between two days

 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have two Date Instance
Date startDate and Date endDate.
Now user will be specifying some step size to go from startDate to endDate in a JSpinner.
Now i have to validate that the step size should be less than the number of days between startDate and endDate.
e.g
startDate is 05/01/2000 // in dd//MM/yyyy format
and endDate is 05/02/2000 //in same format
Now i should stop user from selecting step size as Calendar.Era,Calendar.Year but should allow him to select lower values.
Any idea how to proceed??
 
"The Hood"
Posts: 8521
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is a topic that discusses how to find the difference in two dates:
https://coderanch.com/t/282529/JSP/java/Subtracting-Time-Date-JSP
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic