string reverse in java without using string functions

String reverse 

public class StrReverse{

     public static void main(String []args){
String str="Java world";
String revstr="";
int length = str.length();

for(int i=length -1;i>=0;i--){
revstr = revstr + str.charAt(i);
}

System.out.println(revstr);
     }

}

Output:

dlrow avaJ


EmoticonEmoticon