Quoting from the Javadoc of SimpleDateFormat:
For formatting, if the number of
pattern letters is 4 or more, the full
form is used; otherwise a short or
abbreviated form is used if available
Thus:
(a) If you expect to see a difference use aaaa (4 x a) rather than aaa (4 x a).
(b) Given that AM/PM has no short form (or long form) then for the a specifier the number of repetition does not matter.
And just to be a bit more thorough, I ran the following program. It found zero cases where the formatting was affected.
Date date = new Date();
int n = 0;
for (String country : Locale.getISOCountries()) {
for (String language : Locale.getISOLanguages()) {
Locale loc = new Locale(language, country);
String as = "";
String prev = null;
for (int i = 0; i < 20; ++i) {
++n;
as += "a";
String current = new SimpleDateFormat(as, loc).format(date);
if (prev != null && !prev.equals(current)) {
System.out.println("Locale: " + loc + ", as=" + as + ", current="
+ prev + ", next=" + current);
}
prev = current;
}
}
}
System.out.println("Tried out " + n + " combinations.");