0
Q:

code to get date and time in android

SimpleDateFormat.getDateInstance().format(Date())
0
SimpleDateFormat.getTimeInstance().format(Date())
0
SimpleDateFormat.getDateTimeInstance().format(Date())
0
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); 
0

New to Communities?

Join the community