Let's say for example i have URL containing the following percent encoded character : %80
It is obviously not an ascii character.
How would it be possible to convert this value to the corresponding hex string in Java.
i tried the following with no luck.Result should be 80.
public static void main(String[] args) {
System.out.print(byteArrayToHexString(URLDecoder.decode("%80","UTF-8").getBytes()));
}
public static String byteArrayToHexString(byte[] bytes)
{
StringBuffer buffer = new StringBuffer();
for(int i=0; i<bytes.length; i++)
{
if(((int)bytes[i] & 0xff) < 0x10)
buffer.append("0");
buffer.append(Long.toString((int) bytes[i] & 0xff, 16));
}
return buffer.toString();
}
80you need, why don't you just strip the percent symbol? Btw, what do you need that for? - Additionally, note that Java characters are 16-bit, i.e. you'll get 2 bytes and depending on the character both bytes might be non-zero (i.e. not 0x00 ). – Thomas Dec 27 '11 at 14:02URLDecoder.decode(...), that will do. I don't see the sense of converting€(%80) to a hex string again. – Thomas Dec 27 '11 at 14:33