📄 signedbinary.java
字号:
/* Derby - Class org.apache.derby.client.am.SignedBinary Copyright (c) 2001, 2005 The Apache Software Foundation or its licensors, where applicable. 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.*/package org.apache.derby.client.am;public class SignedBinary { // Hide the default constructor, this is a static class. private SignedBinary() { } /** * Unix byte-order for signed binary representations. */ public final static int BIG_ENDIAN = 1; /** * Intel 80/86 reversed byte-order for signed binary representations. */ public final static int LITTLE_ENDIAN = 2; /** * Build a Java short from a 2-byte signed binary representation. * * @throws IllegalArgumentException if the specified byte order is not recognized. */ public static final short getShort(byte[] buffer, int offset) { return (short) (((buffer[offset + 0] & 0xff) << 8) + ((buffer[offset + 1] & 0xff) << 0)); } /** * Build a Java int from a 4-byte signed binary representation. * * @throws IllegalArgumentException if the specified byte order is not recognized. */ public static final int getInt(byte[] buffer, int offset) { return (int) (((buffer[offset + 0] & 0xff) << 24) + ((buffer[offset + 1] & 0xff) << 16) + ((buffer[offset + 2] & 0xff) << 8) + ((buffer[offset + 3] & 0xff) << 0)); } /** * Build a Java long from an 8-byte signed binary representation. * * @throws IllegalArgumentException if the specified byte order is not recognized. */ public static final long getLong(byte[] buffer, int offset) { return (long) (((buffer[offset + 0] & 0xffL) << 56) + ((buffer[offset + 1] & 0xffL) << 48) + ((buffer[offset + 2] & 0xffL) << 40) + ((buffer[offset + 3] & 0xffL) << 32) + ((buffer[offset + 4] & 0xffL) << 24) + ((buffer[offset + 5] & 0xffL) << 16) + ((buffer[offset + 6] & 0xffL) << 8) + ((buffer[offset + 7] & 0xffL) << 0)); } //--------------------- input converters ------------------------------------- /** * Write a Java short to a 2-byte big endian signed binary representation. */ public static final void shortToBigEndianBytes(byte[] buffer, int offset, short v) { buffer[offset++] = (byte) ((v >>> 8) & 0xFF); buffer[offset++] = (byte) ((v >>> 0) & 0xFF); } /** * Write a Java int to a 4-byte big endian signed binary representation. */ public static final void intToBigEndianBytes(byte[] buffer, int offset, int v) { buffer[offset++] = (byte) ((v >>> 24) & 0xFF); buffer[offset++] = (byte) ((v >>> 16) & 0xFF); buffer[offset++] = (byte) ((v >>> 8) & 0xFF); buffer[offset++] = (byte) ((v >>> 0) & 0xFF); } /** * Write a Java long to an 8-byte big endian signed binary representation. */ public static final void longToBigEndianBytes(byte[] buffer, int offset, long v) { buffer[offset++] = (byte) ((v >>> 56) & 0xFF); buffer[offset++] = (byte) ((v >>> 48) & 0xFF); buffer[offset++] = (byte) ((v >>> 40) & 0xFF); buffer[offset++] = (byte) ((v >>> 32) & 0xFF); buffer[offset++] = (byte) ((v >>> 24) & 0xFF); buffer[offset++] = (byte) ((v >>> 16) & 0xFF); buffer[offset++] = (byte) ((v >>> 8) & 0xFF); buffer[offset++] = (byte) ((v >>> 0) & 0xFF); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -