show/hide this revision's text 3 added 22 characters in body

It appears concat and append functions can be really slow. The following was MUCH faster for me (than my previous post). Changing to a char array in building the output was the key factor to speed it up. I have not compared to Hex.encodeHex suggested by Brandon DuRette.

public static String toHexString(byte[] bytes) {
    char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
    char[] hexChars = new char[10000000];
    int c = 0;
    int v;
    for ( j = 0; j < bytes.length; j++ ) {
        v = bytes[j] & 0xFF;
        hexChars[c] = hexArray2[v/16]hexArray[v/16];
        c++;
        hexChars[c] = hexArray2[v%16]hexArray[v%16];
        c++;
    }
    return new String(hexChars, 0, c); }
show/hide this revision's text 2 changed logic without changing functionality

It appears concat and append functions can be really slow. The following was MUCH faster for me (than my previous post). Changing to a char array in building the output was the key factor to speed it up. I have not compared to Hex.encodeHex suggested by Brandon DuRette.

public static String toHexString(byte[] bytes) { char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; char[] hexChars = new char[10000000]; int c = -1; 0; int v; for ( j = 0; j < bytes.length; j++ ) { v = bytes[j] & 0xFF; c++; hexChars[c] = hexArray2[v/16]; c++; hexChars[c] = hexArray2[v%16]; c++; } return new String(hexChars, 0, c); }

show/hide this revision's text 1

It appears concat and append functions can be really slow. The following was MUCH faster for me (than my previous post). Changing to a char array in building the output was the key factor to speed it up. I have not compared to Hex.encodeHex suggested by Brandon DuRette.

public static String toHexString(byte[] bytes) {

char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
char[] hexChars = new char[10000000];
int c = -1;
int v;
for ( j = 0; j < bytes.length; j++ ) {
    v = bytes[j] & 0xFF;
    c++;
    hexChars[c] = hexArray2[v/16];
    c++;
    hexChars[c] = hexArray2[v%16];
}
return new String(hexChars, 0, c);

}