android how to get the current date and time in java code example
Example 1: android java get current time
import java.time.*;
LocalDateTime datetime = LocalDateTime.now();
Example 2: android java get current time
import java.time.*;
LocalTime time = LocalTime.now();