Unless you really have to reverse the string like that I would use a StringBuilder instead.


final StringBuilder stringBuilder = new StringBuilder("String To Reverse");
final String...