Upper En Java

public class Guru99 {   
    public static void main(String args[]) {       
        String S1 = new String("minúsculas convertidas en mayúsculas");       
 
        // Convertir a UpperCase    
        System.out.println(S1.toUpperCase());   
    }
}
Dangerous Dog