As said, reversing a String object is not possible, as string objects in Java are immutable.
You could circumvent this by using reflection to access the underlying array (see below), but this is not advisable.
If we take a question as working on a char[] (or any other array) instead, it gets easy:
/**
* reverses an array by swapping its elements.
*/
public static void reverse(char[] array) {
reverse(array, 0, array.length);
}
/**
* reverses a section of an array by swapping its elements.
* @param start the start of the section, inclusive
* @param end the end of the section, exclusive
*/
public static void reverse(char[] array, int start, int end) {
for(int i = start, j = end-1; i < j; i++, j--) {
swap(array, i, j);
}
}
/**
* swaps two array elements.
*/
private static void swap(char[] array, int i, int j) {
char help = array[i];
array[i] = array[j];
array[j] = help;
}
Having this, we can now also cheat to reverse an existing string:
public static void reverse(String s) {
Class<String> sClass = String.class;
char[] array = (char[])sClass.getDeclaredField("value").get(s);
int start = sClass.getDeclaredField("offset").getInt(s);
int len = sClass.getDeclaredField("count").getInt(s);
reverse(array, start, start+len);
}
As said, this is not advisable since the whole VM and standard library is based on the fact that Strings are immutable. Also, the field names here are taken from the 1.6.0_13 Sun implementation, other VMs may have other names for these fields, or store strings in another way altogether.