get current date in android java code example
Example 1: android java get current time
import java.time.*;
LocalDateTime datetime = LocalDateTime.now();
Example 2: android get date
String currentDate = new SimpleDateFormat("dd-MM-yyyy", Locale.getDefault()).format(new Date());