There is nothing in JDK to do this.
static String[] suffixes =
// 0 1 2 3 4 5 6 7 8 9
{ "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th",
// 10 11 12 13 14 15 16 17 18 19
"th", "th", "th", "th", "th", "th", "th", "th", "th", "th",
// 20 21 22 23 24 25 26 27 28 29
"th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th",
// 30 31
"th", "st" };
Date date = new Date();
SimpleDateFormat formatDayOfMonth = new SimpleDateFormat("d");
int day = Integer.parseInt(formatDateOfMonth.format(date));
String dayStr = day + suffixes[day];
I didn't run this through a compiler, so might be errors, but you get the idea.
EDIT: I saw some quick down votes at first. Probably because of the perceived inefficiencies. Same thing, but less likely to offend:
Date date = new Date();
int day = Calendar.getInstance().setTime(date).get(Calendar.DAY_OF_MONTH);
String dayStr = day + suffixes[day];