vnaa,
In stead of reversing a string your ploblem is to write a series of sub-strings starting from the last character using the member method substring in the class String:
String s="Hello";
for (int i=1;i<s.length()+1;i++)
System.out.print(s.substring(s.length()-i) + ", ");