Answers for "how to set hour of the day in minutes and hour format java calendar"

1

how to add minutes in date in java

// Adding 10 mins using Date constructor.
Calendar date = Calendar.getInstance();
System.out.println("Current Date and TIme : " + date.getTime());
long timeInSecs = date.getTimeInMillis();
Date afterAdding10Mins = new Date(timeInSecs + (10 * 60 * 1000));
System.out.println("After adding 10 mins : " + afterAdding10Mins);
Posted by: Guest on September-11-2021
0

java get year month day hour minute second

LocalDateTime now = LocalDateTime.now();
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
int hour = now.getHour();
int minute = now.getMinute();
int second = now.getSecond();
int millis = now.get(ChronoField.MILLI_OF_SECOND); // Note: no direct getter available.

System.out.printf("%d-%02d-%02d %02d:%02d:%02d.%03d", year, month, day, hour, minute, second, millis);
Posted by: Guest on August-15-2021

Code answers related to "how to set hour of the day in minutes and hour format java calendar"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language