Conversion of various time formats in Java

Source: Internet
Author: User

http://www.chinaitpower.com/A/2005-01-14/104881.html using Java.util.Calendar to return the interval of days         Static intGetdaysbetween (Java.util.Calendar d1, Java.util.Calendar D2) {          if(D1.after (D2)) {//Swap dates so D1 are start and D2 is endJava.util.Calendar swap = D1;D1 = d2;d2 = swap;          }          intDays = D2.get (Java.util.Calendar. Day_of_year) -d1.get (Java.util.Calendar. Day_of_year);          inty2 = d2.get (Java.util.Calendar. Year);          if(D1.get (Java.util.Calendar. Year) = y2) {D1 = (Java.util.Calendar) d1.clone ();              Do{Days + = D1.getactualmaximum (Java.util.Calendar. Day_of_year);D1.add (Java.util.Calendar. Year, 1);              } while(D1.get (Java.util.Calendar. Year)! = y2);          }          returnDays ;      }      conversion of various time formats in Java

Conversion of various time formats in Java

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.