Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i m new to java. i want to convert a byte array of decimal value to hexadecimal string. my input byte array is [0, 0, 0, 0, 0, 0, 1, -28]. i m getting 00000000000001e4 instead of 0000001e4. plz help me to solve this problem

 public static String ConvetToHex(byte[] decValue) 
{

    String value = "";
    for(int i = 0;i<decValue.length;i++)
    {
         value = value+ Integer.toString((decValue[i] & 0xff) + 0x100, 16).substring(1);
    }
    return value;
}
share|improve this question

1 Answer

It looks correct to me. Eight bytes should turn into 16 hex characters. You can use

return new BigInteger(1, decValue).toString(16);

but it will produce the same output.

share|improve this answer
but is there anyway to get in the specified format..? – Sachin K S Dec 13 '12 at 11:41
1  
Sure you can but you will produce a number which is meaningless as there is no way to read the value correctly. – Peter Lawrey Dec 13 '12 at 11:44
For example in the format you suggest there is no way to tell if 1001 is 10, 01 (as it should be) or 10, 0, 1 or 1,0,0,1. – Peter Lawrey Dec 13 '12 at 11:48
i wrote the same code in .NET like value = value + Convert.ToInt32(decvalue[i]).toString("x"); i got the output which i mentioned. – Sachin K S Dec 13 '12 at 11:53
1  
ok thank you. you are right... – Sachin K S Dec 13 '12 at 12:14
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.