Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to calculate the amount of months between two dates java

LocalDate jamesBirthDay = new LocalDate(1955, 5, 19);
LocalDate now = new LocalDate(2015, 7, 30);
        
int monthsBetween = Months.monthsBetween(jamesBirthDay, now).getMonths();
int yearsBetween = Years.yearsBetween(jamesBirthDay, now).getYears();
        
System.out.println("Month since father of Java born : " 
                    + monthsBetween);
System.out.println("Number of years since father of Java born : " 
                    + yearsBetween);
Comment

java get number of months between two dates

		LocalDate currentDay = LocalDate.of(1955, Month.MAY, 19);
		LocalDate desiredDay = LocalDate.now();
		Period age = Period.between(currentDay, desiredDay);
		int years = age.getYears();
		int months = age.getMonths();

		int numberOfMonthsBetweenDates =  months+years*12;
Comment

calculate number of years months and days between two dates in java

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;
Comment

PREVIOUS NEXT
Code Example
Java :: initialiser une arraylist 
Java :: java long to hours minutes and seconds 
Java :: java for loop increment by 3 
Java :: java priority queue 
Java :: Java Writer Using FileWriter 
Java :: read timed out android studio 
Java :: java convert float to double 
Java :: java hello word 
Java :: setupactionbarwithnavcontroller problem 
Java :: calling activity method from fragment: 
Java :: polymorphism in oop 
Java :: java reverse string 
Java :: sc.nextline skips 
Java :: convert char array to set in java 
Java :: json array to list in java 
Java :: add character to a string java 
Java :: esponente in java 
Java :: volley android 
Java :: regex pattern for bank cards validation 
Java :: java array sortieren 
Java :: Error: Could not find or load main class javafx.controls,javafx.fxml Caused by: java.lang.ClassNotFoundException: javafx.controls,javafx.fxml 
Java :: java arrayList of array to array of array 
Java :: tostring in java 
Java :: get arguments in fragment kotlin 
Java :: ternary operator java 
Java :: java timeout 
Java :: first line of java code 
Java :: java concatenate strings 
Java :: add to list java 
Java :: how to concatenate two strings in java 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =