Convert the number of milliseconds to * day * hour * minute * Second in Java

Source: Internet
Author: User

Converts the number of milliseconds or two date types to * day * hour * minute * second, which is often used for time period calculation.

/** <Br/> * @ Param the number of milliseconds to be converted <br/> * @ return the number of milliseconds to be converted to * Days * hours * minutes * seconds format <br/> * @ author FY. zhang <br/> */<br/> Public static string formatduring (long MSS) {<br/> long days = MSS/(1000*60*60*24 ); <br/> long hours = (MSS % (1000*60*60*24)/(1000*60*60 ); <br/> long minutes = (MSS % (1000*60*60)/(1000*60 ); <br/> long seconds = (MSS % (1000*60)/1000; <br/> return days + "days" + hours + "hours" + minutes + "Minutes" <br/> + seconds + "seconds "; <br/>}< br/>/** <br/> * @ Param begin start time period <br/> * @ Param end time period <br/> * @ return: the time difference between two date data types is displayed in the format of * Days * hours * minutes * seconds <br/> * @ author FY. zhang <br/> */<br/> Public static string formatduring (date begin, date end) {<br/> return formatduring (end. gettime ()-begin. gettime (); <br/>}< br/>

Hope you can use it.

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.