Comment supprimer le caractère dans String Java

# subString(int start, int end);

String a = "Hello!";
b = a.subString(0,a.length()-1) #Remove the last String
# b should be "Hello" then
Adorable Antelope