Java obtains the date of a specific day from a specific date

Source: Internet
Author: User

[Java]/*** obtain the date of a specified number of days from a specific date * @ param date specifies the date * @ param days gap Number of days * @ param format date format * @ return */public static String getAddDaysDate (String format, string date, int days) {if (CommonString. getFormatPara (format ). equals ("") {format = "yyyy-MM-dd";} SimpleDateFormat sdf = new SimpleDateFormat (format. toString (); if (CommonString. getFormatPara (date ). equals ("") {date = sdf. format (CommonDate. getToday (format);} Calendar calendar = Calendar. getInstance (); try {calendar. setTime (sdf. parse (date);} catch (java. text. parseException e) {e. printStackTrace ();} calendar. add (calendar. DATE, days); return sdf. format (calendar. getTime ();} select convert (varchar, getdate (), 23) only captures the current system date. select convert (varchar, getdate (), 8) only captures the current system time.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.