how to get date in android studio code example

Example 1: 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 2: how to get system date in android

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

Example 3: code to get date and time in android

SimpleDateFormat.getDateTimeInstance().format(Date())

Example 4: 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);

Tags:

Java Example