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