Answers for "how to get the current date asia in java android studio"

7

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)
Posted by: Guest on February-26-2021
6

android java get current date

import java.time.*;
LocalDate date = LocalDate.now();
Posted by: Guest on February-05-2021

Code answers related to "how to get the current date asia in java android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language