android date time code example

Example 1: android date time

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

Example 2: code to get date and time in android

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

Example 3: code to get date and time in android

SimpleDateFormat.getDateInstance().format(Date())

Example 4: code to get date and time in android

SimpleDateFormat.getTimeInstance().format(Date())

Example 5: 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