Java tutorial
//package com.java2s; /*** * Copyright 2002-2010 jamod development team * * 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. ***/ public class Main { /** * Converts a double value to a byte[8]. * * @param d the double to be converted. * @return a byte[8]. */ public static final byte[] doubleToRegisters(double d) { return longToRegisters(Double.doubleToLongBits(d)); } /** * Converts a long value to a byte[8]. * * @param v the value to be converted. * @return a byte[8] containing the long value. */ public static final byte[] longToRegisters(long v) { byte[] registers = new byte[8]; registers[0] = (byte) (0xff & (v >> 56)); registers[1] = (byte) (0xff & (v >> 48)); registers[2] = (byte) (0xff & (v >> 40)); registers[3] = (byte) (0xff & (v >> 32)); registers[4] = (byte) (0xff & (v >> 24)); registers[5] = (byte) (0xff & (v >> 16)); registers[6] = (byte) (0xff & (v >> 8)); registers[7] = (byte) (0xff & v); return registers; } }