help me plz i need to sort ip address, am try to sort
in java.util.Arrays.sort() but it not correct for eg
String st[]={"10.4.23.16","10.4.23.9"};
java.util.Arrays.sort(st);
for(int i=0;i<st.length;i++){
System.out.println(st[i]);
}
the out put is
10.4.23.16
10.4.23.9
plz give idea