Horje
java date time Code Example
java date time
import java.time.format.DateTimeFormatter;
import java.time.LocalDateTime;  
public class CurrentDateTimeExample1 {  
  public static void main(String[] args) {  
   DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss");
   LocalDateTime now = LocalDateTime.now();
   System.out.println(dtf.format(now));
  }  
}  
Date and time java
public static String findDay(int month, int day, int year) {
       LocalDate ld=LocalDate.of(year,month,day);
       return ld.getDayOfWeek().name();




20

Related
java hashmap entryset Code Example java hashmap entryset Code Example
java iterate through hashmap Code Example java iterate through hashmap Code Example
check jdk version windows 10 cmd Code Example check jdk version windows 10 cmd Code Example
Unrecognized option: --version Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. Code Example Unrecognized option: --version Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. Code Example
how to check which java version i have Code Example how to check which java version i have Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12