If ts is your Timestamp object, then to get the month in string format:
String month = (new SimpleDateFormat("MMMM")).format(ts.getTime());
and for the day of the week:
String day = (new SimpleDateFormat("EEEE")).format(ts.getTime());
Rocky inde
source share