Find Number Of Weeks Between Two Dates In Java

[Solved] Find Number Of Weeks Between Two Dates In Java | Java - Code Explorer | yomemimo.com
Question : calculate number of years months and days between two dates in java

Answered by : marc-andri-fuchs

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date birth = sdf.parse("2000-01-01");
Date now = new Date(System.currentTimeMillis());
Calendar c = Calendar.getInstance();
c.setTimeInMillis(now.getTime() - birth.getTime());
int y = c.get(Calendar.YEAR)-1970;
int m = c.get(Calendar.MONTH);
int d = c.get(Calendar.DAY_OF_MONTH)-1;

Source : | Last Update : Thu, 18 Mar 21

Question : find number of weeks between two dates in java

Answered by : rashid

SimpleDateFormat myFormat = new SimpleDateFormat("dd MM yyyy");
String classStartData = "31 01 2021";
String classEndData = "08 03 2021";
Date dateClassStart = myFormat.parse(classStartData);
Date dateClassEnd = myFormat.parse(classEndData);
long differenceWeek = dateClassEnd.getTime() - dateClassStart.getTime();
int programLength = (int)(TimeUnit.DAYS.convert(differenceWeek, TimeUnit.MILLISECONDS)/7);
System.out.println("Class length in weeks: " +programLength);

Source : | Last Update : Wed, 02 Feb 22

Answers related to find number of weeks between two dates in java

Code Explorer Popular Question For Java