Write a Java class that calculates the number of weeks between two dates.

Source: Internet
Author: User

Import Java.text.SimpleDateFormat;
Import Java.util.Date;
Import Java.util.Scanner;

public class Demo3 {

/**
* @param args
*/
public static void Main (string[] args) {
TODO auto-generated Method Stub
System.out.println ("Please enter first Date: Yyyy-mm-dd");
Scanner s = new Scanner (system.in);
String Strdatestar = S.next ();

System.out.println ("Please enter a second date: Yyyy-mm-dd");
Scanner S1 = new Scanner (system.in);
String strdateend = S.next ();


try{
SimpleDateFormat SDF = new SimpleDateFormat ("Yyyy-mm-dd");

Date DateStart = Sdf.parse (Strdatestar);
Date dateend = Sdf.parse (strdateend);

System.out.println ((Dateend.gettime ()-Datestart.gettime ())/86400000/7);



}
catch (Exception ex) {

Ex.printstacktrace ();
}


}

}

Write a Java class that calculates the number of weeks between two dates.

Related Article

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.