Here you can find the source of int32ToArrayInPlace(int data, byte[] buffer, int offset)
Parameter | Description |
---|---|
data | the 32 bit integer to send over the network |
buffer | the byte array that receives the converted integer |
offset | the offset into the buffer |
public static void int32ToArrayInPlace(int data, byte[] buffer, int offset)
//package com.java2s; /**/*from w w w.jav a2s . c o m*/ * Copyright (C) 2006-2008 Werner Dittmann * * 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 3 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, see <http://www.gnu.org/licenses/>. * * Authors: Werner Dittmann <Werner.Dittmann@t-online.de> */ public class Main { /** * Convert a 32 bit integer into a byte array, network order. * * This method places the converted four bytes into the buffer starting * at the given offset. * * @param data the 32 bit integer to send over the network * @param buffer the byte array that receives the converted integer * @param offset the offset into the buffer */ public static void int32ToArrayInPlace(int data, byte[] buffer, int offset) { buffer[offset] = (byte) (data >> 24); buffer[offset + 1] = (byte) (data >> 16); buffer[offset + 2] = (byte) (data >> 8); buffer[offset + 3] = (byte) data; } }