I am displaying the date and time in Android with this format: 2013-06-18 12:41:24
How can I change it to the following format? 18-j
You have to set like this
Date date=new Date("Your date "); SimpleDateFormat formatter5=new SimpleDateFormat("required format"); String formats1 = formatter5.format(date); System.out.println(formats1);