byte to Double : byte « Data Type « Java






byte to Double

     
/*
Copyright 2007 Creare Inc.

Licensed under the Apache License, Version 2.0 (the "License"); 
you may not use this file except in compliance with the License. 
You may obtain a copy of the License at 

http://www.apache.org/licenses/LICENSE-2.0 

Unless required by applicable law or agreed to in writing, software 
distributed under the License is distributed on an "AS IS" BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
See the License for the specific language governing permissions and 
limitations under the License.
 */

/*
 *****************************************************************
 ***                                                           ***
 ***   Name : ByteConvert      ()                              ***
 ***   By   : Eric Friets      (Creare Inc., Hanover, NH)      ***
 ***   For  : FlyScan,DoeScan                                  ***
 ***   Date : December 1997,July 2000                          ***
 ***                                                           ***
 ***   Copyright 1997-2000 Creare Inc.                         ***
 ***                                                           ***
 ***   Description : extracts doubles, floats, short ints from ***
 ***                 byte arrays without using input streams,  ***
 ***                 and vice-versa                            ***
 ***                                                           ***
 ***   Input : primitive array                                 ***
 ***                                                           ***
 ***   Input/Output :                                          ***
 ***                                                           ***
 ***   Output :                                                ***
 ***                                                           ***
 ***   Returns : primitive array                               ***
 ***                                                           ***
 *****************************************************************
 */

// all methods are static

// using ByteArrayInputStream, DataInputStream, ByteArrayOutputStream,
// and DataOutputStream are too slow; code for direct reads/writes
// based on routines in the JVM ObjectInputStream and ObjectOutputStream
// source files

//package com.rbnb.utility;

/**
 * Utility class to convert low level data types to and from byte arrays.
 */

//
// 02/17/2003 WHF Added optional byte swapping on x2Byte methods.
//
public class ByteConvert {

  // byte2Double method - extracts doubles from byte array
  public static final double[] byte2Double(byte[] inData, boolean byteSwap) {
    int j = 0, upper, lower;
    int length = inData.length / 8;
    double[] outData = new double[length];
    if (!byteSwap)
      for (int i = 0; i < length; i++) {
        j = i * 8;
        upper = (((inData[j] & 0xff) << 24)
            + ((inData[j + 1] & 0xff) << 16)
            + ((inData[j + 2] & 0xff) << 8) + ((inData[j + 3] & 0xff) << 0));
        lower = (((inData[j + 4] & 0xff) << 24)
            + ((inData[j + 5] & 0xff) << 16)
            + ((inData[j + 6] & 0xff) << 8) + ((inData[j + 7] & 0xff) << 0));
        outData[i] = Double.longBitsToDouble((((long) upper) << 32)
            + (lower & 0xffffffffl));
      }
    else
      for (int i = 0; i < length; i++) {
        j = i * 8;
        upper = (((inData[j + 7] & 0xff) << 24)
            + ((inData[j + 6] & 0xff) << 16)
            + ((inData[j + 5] & 0xff) << 8) + ((inData[j + 4] & 0xff) << 0));
        lower = (((inData[j + 3] & 0xff) << 24)
            + ((inData[j + 2] & 0xff) << 16)
            + ((inData[j + 1] & 0xff) << 8) + ((inData[j] & 0xff) << 0));
        outData[i] = Double.longBitsToDouble((((long) upper) << 32)
            + (lower & 0xffffffffl));
      }

    return outData;
  }

}

   
    
    
    
    
  








Related examples in the same category

1.Byte class creates primitives that wrap themselves around data items of the byte data type
2.Convert byte to String: Using the static toString method of the Byte class
3.Convert byte to String: Using simple concatenation with an empty String
4.Convert byte to String: Creating a byte array and passing it to the String constructor
5.Convert String to byte
6.Convert String to byte array
7.Convert byte[ ] array to String
8.Min and Max values of datatype int
9.Min and Max values of datatype short
10.Min and Max values of datatype byte
11.Max and Min values of datatype char
12.Minimum and maximum values of a byte
13.Java byte: byte is smallest Java integer type.byte is 8 bit signed type ranges from –128 to 127.
14.Use toString method of Byte class to convert Byte into String
15.Use Byte constructor to convert byte primitive type to Byte object
16.Convert Byte to numeric primitive data types example
17.Convert Java String to Byte example
18.Convert String to primitive byte Example
19.Java Byte Example
20.Compare Two Java byte Arrays Example
21.Convert an UNSIGNED byte to a JAVA type
22.To convert a byte to it's hexadecimal equivalent
23.Wrapping a Primitive Type in a Wrapper Object: boolean, byte, char, short, int, long, float, double
24.Print the limits of primitive types (e.g. byte, short, int ...) in Java
25.byte Array To Hex String
26.hex String To Byte Array
27.This shows something interesting about addition of byte variablesThis shows something interesting about addition of byte variables
28.Gets the maximum of three byte values.
29.Gets the minimum of three byte values.
30.Translates between byte arrays and strings of "0"s and "1"s.
31.Immutable byte list
32.Make Int From Byte
33.Returns the integer represented by up to 4 bytes in network byte order.
34.Encodes an integer into up to 4 bytes in network byte order in the supplied buffer