Prova così:

codice:
public static String sostituisci(String str, String vocale) {
    return str.replaceAll("a|e|i|o|u", vocale);
}