Answers for "java get year month day hour minute second"

2

get day from date month year java

Calendar cal = Calendar.getInstance();
cal.set(year,month-1,day);
int nd = cal.get(Calendar.DAY_OF_WEEK);
Posted by: Guest on May-18-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 "java get year month day hour minute second"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language