java.text.DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
String date = dateFormat.format(new Date());
Currently i can use this code to get time in dd/mm/yyyy format.
what i would like to get is date and time with no formatting..so for
15/04/2011 12:00:00 i want :
15042011120000
?