Answers for "how to get current time and date with defualt formate android"

4

how to set current date in android studio

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 time and date with defualt formate android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language