Date Calculator

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dmkiboh
    New Member
    • Apr 2010
    • 1

    Date Calculator

    How would I create a very basic Java program when a users enters a certain date and wants to add a specific amount of days to that date the program will generate the new date. Example if my start date is today, April 12, 2010 and I want to know what the new date would be in 100 days.
  • jkmyoung
    Recognized Expert Top Contributor
    • Mar 2006
    • 2057

    #2
    Look at the Calendar Class, particularly the
    set(int year, int month, int date)
    and the
    add(int field, int amount)
    functions.

    If you choose to use this, you'll probably be using a GregorianCalend ar.

    Comment

    Working...