|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.poi.util.LittleEndian
public class LittleEndian
a utility class for handling little-endian numbers, which the 80x86 world is replete with. The methods are all static, and input/output is from/to byte arrays, or from InputStreams.
Nested Class Summary | |
---|---|
static class |
LittleEndian.BufferUnderrunException
Exception to handle buffer underruns |
Field Summary |
---|
Fields inherited from interface org.apache.poi.util.LittleEndianConsts |
---|
BYTE_SIZE, DOUBLE_SIZE, INT_SIZE, LONG_SIZE, SHORT_SIZE |
Method Summary | |
---|---|
static byte[] |
getByteArray(byte[] data,
int offset,
int size)
Copy a portion of a byte array |
static double |
getDouble(byte[] data)
get a double value from a byte array, reads it in little endian format then converts the resulting revolting IEEE 754 (curse them) floating point number to a happy java double |
static double |
getDouble(byte[] data,
int offset)
get a double value from a byte array, reads it in little endian format then converts the resulting revolting IEEE 754 (curse them) floating point number to a happy java double |
static float |
getFloat(byte[] data)
get a float value from a byte array, reads it in little endian format then converts the resulting revolting IEEE 754 (curse them) floating point number to a happy java float |
static float |
getFloat(byte[] data,
int offset)
get a float value from a byte array, reads it in little endian format then converts the resulting revolting IEEE 754 (curse them) floating point number to a happy java float |
static int |
getInt(byte[] data)
get an int value from the beginning of a byte array |
static int |
getInt(byte[] data,
int offset)
get an int value from a byte array |
static long |
getLong(byte[] data)
get a long value from a byte array |
static long |
getLong(byte[] data,
int offset)
get a long value from a byte array |
static short |
getShort(byte[] data)
get a short value from the beginning of a byte array |
static short |
getShort(byte[] data,
int offset)
get a short value from a byte array |
static short[] |
getShortArray(byte[] data,
int offset,
int size)
Read short array |
static short |
getUByte(byte[] data)
get the unsigned value of a byte. |
static short |
getUByte(byte[] data,
int offset)
get the unsigned value of a byte. |
static long |
getUInt(byte[] data)
get an unsigned int value from a byte array |
static long |
getUInt(byte[] data,
int offset)
get an unsigned int value from a byte array |
static int |
getUShort(byte[] data)
get an unsigned short value from the beginning of a byte array |
static int |
getUShort(byte[] data,
int offset)
get an unsigned short value from a byte array |
static void |
putByte(byte[] data,
int offset,
int value)
executes: |
static void |
putDouble(byte[] data,
int offset,
double value)
put a double value into a byte array |
static void |
putDouble(double value,
java.io.OutputStream outputStream)
put a double value into a byte array |
static void |
putFloat(byte[] data,
int offset,
float value)
put a float value into a byte array |
static void |
putFloat(float value,
java.io.OutputStream outputStream)
put a float value into a byte array |
static void |
putInt(byte[] data,
int offset,
int value)
put an int value into a byte array |
static void |
putInt(int value,
java.io.OutputStream outputStream)
Put int into output stream |
static void |
putLong(byte[] data,
int offset,
long value)
put a long value into a byte array |
static void |
putLong(long value,
java.io.OutputStream outputStream)
Put long into output stream |
static void |
putShort(byte[] data,
int offset,
short value)
put a short value into a byte array |
static void |
putShort(java.io.OutputStream outputStream,
short value)
Put signed short into output stream |
static void |
putShortArray(byte[] data,
int startOffset,
short[] value)
Stores short array in buffer |
static void |
putUByte(byte[] data,
int offset,
short value)
put an unsigned byte value into a byte array |
static void |
putUInt(byte[] data,
int offset,
long value)
put an unsigned int value into a byte array |
static void |
putUInt(long value,
java.io.OutputStream outputStream)
Put unsigned int into output stream |
static void |
putUShort(byte[] data,
int offset,
int value)
put an unsigned short value into a byte array |
static void |
putUShort(int value,
java.io.OutputStream outputStream)
Put unsigned short into output stream |
static int |
readInt(java.io.InputStream stream)
get an int value from an InputStream |
static long |
readLong(java.io.InputStream stream)
get a long value from an InputStream |
static short |
readShort(java.io.InputStream stream)
get a short value from an InputStream |
static long |
readUInt(java.io.InputStream stream)
get an unsigned int value from an InputStream |
static int |
readUShort(java.io.InputStream stream)
|
static int |
ubyteToInt(byte b)
Convert an 'unsigned' byte to an integer. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static byte[] getByteArray(byte[] data, int offset, int size)
data
- the original byte arrayoffset
- Where to start copying from.size
- Number of bytes to copy.
java.lang.IndexOutOfBoundsException
- - if copying would cause access of data outside array bounds.public static double getDouble(byte[] data)
data
- the byte array
public static double getDouble(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static float getFloat(byte[] data)
data
- the byte array
public static float getFloat(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static int getInt(byte[] data)
data
- the byte array
public static int getInt(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static long getLong(byte[] data)
data
- the byte array
public static long getLong(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static short getShort(byte[] data)
data
- the byte array
public static short getShort(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static short[] getShortArray(byte[] data, int offset, int size)
data
- the original byte arrayoffset
- Where to start copying from.size
- Number of bytes to copy.
java.lang.IndexOutOfBoundsException
- - if read would cause access of data outside array bounds.public static short getUByte(byte[] data)
data
- the byte array.
public static short getUByte(byte[] data, int offset)
data
- the byte array.offset
- a starting offset into the byte array.
public static long getUInt(byte[] data)
data
- the byte array
public static long getUInt(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static int getUShort(byte[] data)
data
- the byte array
public static int getUShort(byte[] data, int offset)
data
- the byte arrayoffset
- a starting offset into the byte array
public static void putByte(byte[] data, int offset, int value)
data[offset] = (byte)value;
public static void putDouble(byte[] data, int offset, double value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the double (64-bit) valuepublic static void putDouble(double value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the double (64-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putFloat(byte[] data, int offset, float value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the float (32-bit) valuepublic static void putFloat(float value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the float (32-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putInt(byte[] data, int offset, int value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the int (32-bit) valuepublic static void putInt(int value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the int (32-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putLong(byte[] data, int offset, long value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the long (64-bit) valuepublic static void putLong(long value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the long (64-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putShort(byte[] data, int offset, short value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the short (16-bit) valuepublic static void putShort(java.io.OutputStream outputStream, short value) throws java.io.IOException
value
- the short (16-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putShortArray(byte[] data, int startOffset, short[] value)
data
- the byte arraystartOffset
- a starting offset into the byte arrayvalue
- the short (16-bit) valuespublic static void putUByte(byte[] data, int offset, short value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the short (16-bit) value
java.lang.ArrayIndexOutOfBoundsException
- may be thrownpublic static void putUInt(byte[] data, int offset, long value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the int (32-bit) value
java.lang.ArrayIndexOutOfBoundsException
- may be thrownpublic static void putUInt(long value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the int (32-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static void putUShort(byte[] data, int offset, int value)
data
- the byte arrayoffset
- a starting offset into the byte arrayvalue
- the short (16-bit) value
java.lang.ArrayIndexOutOfBoundsException
- may be thrownpublic static void putUShort(int value, java.io.OutputStream outputStream) throws java.io.IOException
value
- the unsigned short (16-bit) valueoutputStream
- output stream
java.io.IOException
- if an I/O error occurspublic static int readInt(java.io.InputStream stream) throws java.io.IOException, LittleEndian.BufferUnderrunException
stream
- the InputStream from which the int is to be read
java.io.IOException
- will be propagated back to the caller
LittleEndian.BufferUnderrunException
- if the stream cannot provide enough bytespublic static long readUInt(java.io.InputStream stream) throws java.io.IOException, LittleEndian.BufferUnderrunException
stream
- the InputStream from which the int is to be read
java.io.IOException
- will be propagated back to the caller
LittleEndian.BufferUnderrunException
- if the stream cannot provide enough bytespublic static long readLong(java.io.InputStream stream) throws java.io.IOException, LittleEndian.BufferUnderrunException
stream
- the InputStream from which the long is to be read
java.io.IOException
- will be propagated back to the caller
LittleEndian.BufferUnderrunException
- if the stream cannot provide enough bytespublic static short readShort(java.io.InputStream stream) throws java.io.IOException, LittleEndian.BufferUnderrunException
stream
- the InputStream from which the short is to be read
java.io.IOException
- will be propagated back to the caller
LittleEndian.BufferUnderrunException
- if the stream cannot provide enough bytespublic static int readUShort(java.io.InputStream stream) throws java.io.IOException, LittleEndian.BufferUnderrunException
java.io.IOException
LittleEndian.BufferUnderrunException
public static int ubyteToInt(byte b)
b
- Description of the Parameter
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |