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

i am trying to convert a signed byte in unsigned , the problem is the data I am receiving is Unsigned and Java does not support unsigned byte so when it reads the data it treats it as signed. I tried it to convert it by the following solution i got from SO

    public static int unsignedToBytes( byte a )
   {
       int b =(( a  & 0xFF ));
       return ((b ));
   }

but when again its converted in byte I get the same signed data.I am trying to use this data as a parameter to a function of java that accepts only byte as parameter so cant use any other data-type. please help.

share|improve this question

9 Answers

up vote 18 down vote accepted

I'm not sure I understand your question.

I just tried this and for byte -12 (signed value) it returned integer 244 (unsigned byte value):

  public static int unsignedToBytes(byte b) {
    return b & 0xFF;
  }

  public static void main(String[] args) {
    System.out.println(unsignedToBytes((byte) -12));
  }

Is it what you want to do?

share|improve this answer
byte b = (byte)unsignedToBytes((byte) -12); now try printing b – Jigar Joshi Nov 24 '10 at 13:07
7  
Why have you accepted this as the correct answer? All it does is exactly the same as the method you mention in your question - convert a byte to an unsigned integer. – Adamski Nov 24 '10 at 13:42
It's important to sometimes have signed values, sometimes unsigned, so probably this is the reason he accepted this answer. (byte)(b & 0xff) doesn't have any sense, but (byte)(Math.min((b & 0xff)*2, 255)) has sense, eg in computer graphics it will just make the pixed represented by the byte two times brighter. :-) – iirekm Nov 24 '10 at 14:40
1  
@Adamski, it is slightly shorter. ;) – Peter Lawrey Nov 24 '10 at 14:41
It could be called byteToUnsigned too – Hernán Eche Jul 4 '12 at 15:46

The fact that primitives are signed in Java is irrelevant - A byte is merely 8 bits and whether you interpret that as a signed range or not is up to you. There is no magic flag to say "this is signed" or "this is unsigned".

As primitives are signed the Java compiler will prevent you from assigning a value higher than +127 to a byte (or lower than -128). However, there's nothing to stop you downcasting to an int (or short) in order to achieve this:

int i = 200;
byte b = (byte)200;

// Will print a negative value but you could *still choose to interpret* this as +200.
System.err.println(b); 

// "Upcast" to short in order to easily view / interpret as a positive value.
// You would typically do this *within* the method that expected an unsigned byte.
short s = b & 0xFF;
System.err.println(s); // Will print a positive value.
share|improve this answer
1  
For many operations it makes no diference, however for some operations it does. Either way you can use a byte as unsigned, or use char which is unsigned. – Peter Lawrey Nov 24 '10 at 12:38
4  
Accessing an array with a potentially negative number is not irrelevant. – Stefan Aug 31 '12 at 14:34

There are no primitive unsigned bytes in Java. The usual thing is to cast it to bigger type:

int anUnsignedByte = (int) byte & 0xff;
share|improve this answer

A byte in Java has the range -128 - 127. There is nothing you can do about it. If the function you're passing the byte to accepts a byte then it does not expect the value to exceed 127.

If you want to represent a number in the range 0-255, you'd have to go with char(*), short, int or long for instance.

(*) char can indeed be considered as an integral type.

share|improve this answer
'char' does not represent a number. – logoff Sep 27 '12 at 14:26
4  
To put it short: You're wrong. – aioobe Sep 27 '12 at 18:51

A side note, if you want to print it out, you can just say

byte b = 255;
System.out.println((b < 0 ? 256 + b : b));
share|improve this answer

If you have a function which must be passed a signed byte, what do you expect it to do if you pass an unsigned byte?

Why can't you use any other data type?

Unsually you can use a byte as an unsigned byte with simple or no translations. It all depends on how it is used. You would need to clarify what you indend to do with it.

share|improve this answer

Although it may seem annoying (coming from C) that Java did not include unsigned byte in the language it really is no big deal since a simple "b & 0xFF" operation yields the unsigned value for (signed) byte b in the (rare) situations that it is actually needed. The bits don't actually change -- just the interpretation (which is important only when doing for example some math operations on the values).

share|improve this answer
look others answer, you think your answer is best/helpful? describe in little and add it in comments – jubinPatel Mar 9 at 17:12

As per limitations in java, unsigned byte is almost impossible in current data-type format. You can go for some other libraries of other language for what u r implementing and then u can call them using JNI.

share|improve this answer

If you want unsigned bytes in java, just subtract 256 from the number you're interested. It will produce 2's complement with negative value, which is the desired number in unsigned bytes.

Example:

int speed = 255 //Integer with the desired byte value
(byte)(255-256) = 11111111 //In binary which is 255 in decimal

You need to use such dirty hacks when using lejos to program the nxt brick.

Copyright my fellow Jakov

share|improve this answer

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.