Answers for "how to get current date and time in english on android studio"

5

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
-2

code to get date and time in android

String dateStr = "04/05/2010"; 

SimpleDateFormat curFormater = new SimpleDateFormat("dd/MM/yyyy"); 
Date dateObj = curFormater.parse(dateStr); 
SimpleDateFormat postFormater = new SimpleDateFormat("MMMM dd, yyyy"); 

String newDateStr = postFormater.format(dateObj);
Posted by: Guest on June-17-2020

Code answers related to "how to get current date and time in english on android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language