I am communicating with some device and this device sending me data as unsigned bytes. And I need to convert these bytes to float in Java. Is there any way?
Thank you very much.
|
I am communicating with some device and this device sending me data as unsigned bytes. And I need to convert these bytes to float in Java. Is there any way? Thank you very much. |
|||||||||||||
|
|
Yes. All you need to do first is convert your four bytes to an
You can also use
Note, that "the device [is] sending me data as unsigned bytes" is not true. The data is sending you bytes, and Java represents them as signed bytes. Java does not have an unsigned byte type. http://download.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
|
|||||||||||
|
|
How abt http://download.oracle.com/javase/1.4.2/docs/api/java/io/DataInputStream.html#readFloat() ? Although I would usually just lookup how it's implemented and then do it myself to avoid any overhead. |
|||
|
|
To get the int you just concatenate the bytes of the array into an integer big-endian:
little-endian:
You should have taken the 2 seconds to search google. http://www.google.com/#sclient=psy-ab&hl=en&source=hp&q=java%2C+byte+array+to+float&pbx=1&oq=java%2C+byte+array+to+float&aq=f&aqi=g1&aql=&gs_sm=e&gs_upl=679l4845l0l4941l25l18l0l0l0l0l299l3512l0.10.8l18l0&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=68fe21dd632e9a4e&biw=1024&bih=607 |
||||
|
|