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

I need to convert 2 bytes (2's complement) into an int in Java code. how do I do it?

toInt(byte hb, byte lb)
{

}
share|improve this question
do you want to implement it by yourself because you have a specific task by your teacher or something? Or do you just want to use the build-in-Java class? – TheChange Jun 23 '10 at 20:51
if the build-in-java class has a method to convert 2 bytes into an integer, sure let me know. – user121196 Jun 23 '10 at 20:54
2  
possible duplicate of [Convert 4 bytes to int ](stackoverflow.com/questions/2383265/convert-4-bytes-to-int) – OscarRyz Jun 23 '10 at 20:56
Perhaps consider why you're passing around raw bytes? You might solve this problem easily by going to SO, but this is indicative of bigger problems. What is this int? Why must it be in bytes? What alternatives are there for persisting this data in another form? – corsiKa Jun 23 '10 at 21:05
@glowcoder: Its more common than you think. – Yann Ramin Jun 24 '10 at 5:48

3 Answers

up vote 9 down vote accepted
return ((int)hb << 8) | ((int)lb & 0xFF);

Correct operation in all cases is left as an exercise for the student.

share|improve this answer
4  
Those casts are both redundant. – Mark Peters Jun 23 '10 at 21:14
1  
Valid point, sometimes its clearer to be explicit. – Yann Ramin Jun 24 '10 at 5:46
It should be noted that this solution works only with signed short integer representation, and won't be appropriate to decode TCP headers where ports are represented in an unsigned format. – Andras Balázs Lajtha Apr 9 at 14:31

You can also use the ByteBuffer class:

public int toInt(byte hb, byte lb) {
    ByteBuffer bb = ByteBuffer.wrap(new byte[] {hb, lb});
    return bb.getShort(); // Implicitly widened to an int per JVM spec.
}

This class might be helpful if you're decoding a lot of data.

share|improve this answer
But if the two bytes are in 2's compliment, wouldn't that make the first byte of hb the sign bit? So your new byte[]{a,b,c,d} would be a= hb & 0x80; b=0; c= hb & 0x7F; d= lb;? I could be off base here. – corsiKa Jun 23 '10 at 21:12
Good point, the first bit of hb should be pulled to the left-hand side of a, so my solution probably isn't what he's looking for. I just wanted to point out the ByteBuffer class... – maerics Jun 23 '10 at 21:44
Use getShort instead of getInt. When you cast the resulting short to an int it will be sign-extended giving the correct result. – finnw Jun 23 '10 at 22:27
@finnw: great idea, why didn't I think of that? =) – maerics Jun 24 '10 at 0:15
public int toInt(byte hb, byte lb)
{
    return ((int)hb)<<8 + lb;
}
share|improve this answer
is this answer the same as the one by theatrus? – user121196 Jun 23 '10 at 21:01
2  
no, it comes up with the wrong answer when lb is negative. – ILMTitan Jun 23 '10 at 22:56
Edited the answer, the solution was to add parentheses around the << operator, hope it'll be approved soon and others won't spend a day debugging the code that uses this snippet :) – Andras Balázs Lajtha Apr 9 at 13:54

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.