Write a 32 bit int as LITTLE_ENDIAN.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
*/
/**
* ByteUtilities.java - Byte manipulation functions.
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
* @since MINA 2.0.0-M3
*/
public class Util{
/**
* Write a 32 bit int as LITTLE_ENDIAN.
*
* @param v the int to write
*/
public final static byte[] writeInt(int v) {
return writeInt(v, new byte[4], 0);
}
/**
* Write a 32 bit int as LITTLE_ENDIAN to
* the given array <code>b</code> at offset <code>offset</code>.
*
* @param v the int to write
* @param b the byte array to write to
* @param offset the offset at which to start writing in the array
*/
public final static byte[] writeInt(int v, byte[] b, int offset) {
b[offset] = (byte) v;
b[offset + 1] = (byte) (v >> 8);
b[offset + 2] = (byte) (v >> 16);
b[offset + 3] = (byte) (v >> 24);
return b;
}
}
Related examples in the same category