What is the best way to work around the fact that ALL Java bytes are signed? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T20:33:34Zhttp://stackoverflow.com/feeds/question/11088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed3What is the best way to work around the fact that ALL Java bytes are signed?Max2008-08-14T14:14:03Z2008-09-01T16:55:09Z
<p>In Java, there is no such thing as an unsigned byte.</p>
<p>Working with some low level code, occasionally you need to work with bytes that have unsigned values greater than 128, which causes Java to interpret them as a negative number due to the MSB being used for sign.</p>
<p>What's a good way to work around this? (Saying don't use Java is not an option)</p>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/11092#11092-1Answer by Nick Berardi for What is the best way to work around the fact that ALL Java bytes are signed?Nick Berardi2008-08-14T14:17:48Z2008-08-14T14:17:48Z<p>I guess you could just use a short to store them. Not very efficient, but really the only option besides some herculean effort that I have seen.</p>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/11098#11098-1Answer by stimms for What is the best way to work around the fact that ALL Java bytes are signed?stimms2008-08-14T14:22:24Z2008-08-14T14:22:24Z<p>Probably your best bet is to use an integer rather than a byte. It has the room to allow for numbers greater than 128 without the overhead of having to create a special object to replace byte. </p>
<p>This is also suggested by people smarter than me (everybody)</p>
<ul>
<li><a href="http://www.darksleep.com/player/JavaAndUnsignedTypes.html" rel="nofollow">http://www.darksleep.com/player/JavaAndUnsignedTypes.html</a></li>
<li><a href="http://www.jguru.com/faq/view.jsp?EID=13647" rel="nofollow">http://www.jguru.com/faq/view.jsp?EID=13647</a></li>
</ul>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/11101#111011Answer by pauldoo for What is the best way to work around the fact that ALL Java bytes are signed?pauldoo2008-08-14T14:24:50Z2008-08-14T14:24:50Z<p>When reading any single value from the array copy it into something like a short or an int and manually convert the negative number into the positive value it should be.</p>
<pre><code>byte[] foobar = ..;
int value = foobar[10];
if (value < 0) value += 256 // Patch up the 'falsely' negative value
</code></pre>
<p>You can do a similar conversion when writing into the array.</p>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/15657#15657-1Answer by martinatime for What is the best way to work around the fact that ALL Java bytes are signed?martinatime2008-08-19T03:39:43Z2008-08-19T03:39:43Z<p>The best way to do bit manipulation/unsigned bytes is through using <strong>int</strong>s. Even though they are signed they have plenty of spare bits (32 total) to treat as an unsigned byte. Also, all of the mathematical operators will convert smaller fixed precision numbers to <strong>int</strong>. Example:</p>
<pre><code>short a = 1s;
short b = 2s;
int c = a + b; // the result is up-converted
short small = (short)c; // must cast to get it back to short
</code></pre>
<p>Because of this it is best to just stick with integer and mask it to get the bits that you are interested in. Example:</p>
<pre><code>int a = 32;
int b = 128;
int foo = (a + b) | 255;
</code></pre>
<p>Here is some more info on Java primitive types <a href="http://mindprod.com/jgloss/primitive.html" rel="nofollow">http://mindprod.com/jgloss/primitive.html</a></p>
<p>One last trivial note, there is one unsigned fixed precision number in Java. That is the <strong>char</strong> primitive.</p>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/15874#15874-1Answer by izb for What is the best way to work around the fact that ALL Java bytes are signed?izb2008-08-19T08:03:27Z2008-08-19T08:03:27Z<p>Using ints is generally better than using shorts because java uses 32-bit values internally anyway (Even for bytes, unless in an array) so using ints will avoid unnecessary conversion to/from short values in the bytecode.</p>
http://stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed/19186#1918611Answer by ejack for What is the best way to work around the fact that ALL Java bytes are signed?ejack2008-08-21T01:17:45Z2008-08-21T01:17:45Z<p><a href="http://beta.stackoverflow.com/questions/11088/what-is-the-best-way-to-work-around-the-fact-that-all-java-bytes-are-signed#11101" rel="nofollow">@pauldoo</a></p>
<p>It is actually possible to get rid of the if statement and the addition if you do it like this.</p>
<pre><code>byte[] foobar = ..;
int value = (foobar[10] & 0xff);
</code></pre>
<p>This way Java doesn't interpret the byte as a negative number and flip the sign bit on the integer also.</p>