Comparison of java Implementation Time and java Implementation Time

Source: Internet
Author: User
Tags time 0

Comparison of java Implementation Time and java Implementation Time

It is very common to compare the time size and convert the String type time to the Date class. The following is a tool method.

Public class Test {public static void main (String [] args) {// TODO Auto-generated method stub String sTime = "2015-07-13"; String fTime = "2015-07-15"; System. out. println (compareDate (stringToDate (fTime), stringToDate (sTime);} public static Date stringToDate (String dateString) {return stringToDate (dateString, "yyyy-MM-dd");} public static Date stringToDate (String dateText, String format) {DateFormat df = null; try {if (format = null) {df = new SimpleDateFormat ();} else {df = new SimpleDateFormat (format);} df. setLenient (false); return df. parse (dateText);} catch (ParseException e) {return null ;}} /*** time judgment ** @ param firstTime * @ param secondTime * @ return the first time is earlier than the second time-1; the first time is equal to the second time 0; 1 */public static int compareDate (Date firstTime, Date secondTime) {long lFirstTime = firstTime. getTime (); long lsecondTime = secondTime. getTime (); if (lFirstTime <lsecondTime) {return-1 ;}else if (lFirstTime> lsecondTime) {return 1 ;}else {return 0 ;}}}

 

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.