android java get current date code example

Example 1: android java get current time

import java.time.*;
LocalDateTime datetime = LocalDateTime.now();

Example 2: android java get current date

import java.time.*;
LocalDate date = LocalDate.now();

Example 3: how to get current date time in android

Calendar c = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strDate = sdf.format(c.getTime());
Log.d("Date","DATE : " + strDate)

Example 4: android get date

String currentDate = new SimpleDateFormat("dd-MM-yyyy", Locale.getDefault()).format(new Date());

Example 5: android studio get time

String currentTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()).format(new Date());

Example 6: how to get system date in android

String date = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).format(new Date());

Tags:

Misc Example