Comment imprimer la chaîne à partir de l'index spécifique java

String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
Disgusted Dove