Java examples for java.lang:byte Array Convert
convert a byte array back to a double number.
/*//from w w w. j av a2 s . c o m * @(#) ByteArrayUtils.java * * This code is part of the JAviator project: javiator.cs.uni-salzburg.at * Copyright (c) 2009 Clemens Krainer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ //package com.java2s; import java.io.ByteArrayInputStream; import java.io.DataInputStream; import java.io.IOException; public class Main { public static void main(String[] argv) throws Exception { byte[] a = new byte[] { 34, 35, 36, 37, 37, 37, 67, 68, 69 }; System.out.println(bytes2double(a)); } /** * convert a byte array back to a double number. * * @param a the byte array representing the double. * @return the converted number as a double. * @throws IOException thrown in case of conversion errors. */ public static double bytes2double(byte[] a) throws IOException { ByteArrayInputStream bin = new ByteArrayInputStream(a); DataInputStream din = new DataInputStream(bin); return din.readDouble(); } }