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 float value to a byte[4] binary float value. * * @param f the float to be converted. * @return a byte[4] containing the float value. */ public static final byte[] floatToRegisters(float f) { return intToRegisters(Float.floatToIntBits(f)); } /** * Converts an int value to a byte[4] array. * * @param v the value to be converted. * @return a byte[4] containing the value. */ public static final byte[] intToRegisters(int v) { byte[] registers = new byte[4]; registers[0] = (byte) (0xff & (v >> 24)); registers[1] = (byte) (0xff & (v >> 16)); registers[2] = (byte) (0xff & (v >> 8)); registers[3] = (byte) (0xff & v); return registers; } }