-
converting byte array to float
Hi,
Can somebody please supply me with some code to convert a 4-byte array into
a float? In C, you can just cast a float pointer to the byte pointer, but
no such mechanism exists in Java.
Thanks
-
Re: converting byte array to float
DataInputStream dis = new DataInputStream(new
ByteArrayInputStream(the4byteArray));
float f = dis.readFloat();
However, if you originally read the 4 bytes from a file or some other input
stream, why not go back and change your program to read the float number
directly from that source? Wrap your input stream in a DataInputStream as
in the code above.
PC2
"Curtis Nelson" <curtis_nelson@@larsondavis.com> wrote in message
news:3ac258bb$1@news.devx.com...
>
> Hi,
>
> Can somebody please supply me with some code to convert a 4-byte array
into
> a float? In C, you can just cast a float pointer to the byte pointer, but
> no such mechanism exists in Java.
>
> Thanks
>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks