how would you write te date if i have a date and all i want is the month and the day like this (mm/dd) and then turn the month like this July, 08
Use:
Format formatter = new SimpleDateFormat("MMMM, dd"); String s = formatter.format(date);
Formatting a Date Using a Custom Format