1
JavaBeginner#strings
The simplest way is to use StringBuilder's reverse() method, though you could also manually iterate from the last character to the first using a char array.
String s = "hello"; String reversed = new StringBuilder(s).reverse().toString(); // "olleh"