Class ByteBuffer
java.lang.Object
java.io.OutputStream
com.aowagie.text.pdf.ByteBuffer
- All Implemented Interfaces:
Closeable, Flushable, AutoCloseable
Acts like a
StringBuffer but works with byte arrays.
Floating point is converted to a format suitable to the PDF.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate byte[]The buffer where the bytes are stored.private static byte[][]private static intprivate static final byte[]private static final char[]private intThe count of bytes in the buffer.private static final DecimalFormatSymbolsprivate static booleanIftruealways output floating point numbers with 6 decimal digits.private static final byte -
Constructor Summary
ConstructorsConstructorDescriptionCreates new ByteBuffer with capacity 128ByteBuffer(int size) Creates a byte buffer with a certain capacity. -
Method Summary
Modifier and TypeMethodDescriptionappend(byte b) (package private) ByteBufferappend(byte[] b) Appends an array of bytes.(package private) ByteBufferappend(byte[] b, int off, int len) Appends the subarray of thebytearray.(package private) ByteBufferappend(char c) Appends acharto the buffer.private ByteBufferappend(double d) Appends a string representation of adoubleaccording to the Pdf conventions.(package private) ByteBufferappend(float i) Appends a string representation of afloataccording to the Pdf conventions.(package private) ByteBufferappend(int i) Appends the string representation of anint.(package private) ByteBufferappend(ByteBuffer buf) Appends anotherByteBufferto this buffer.(package private) ByteBufferAppends aStringto the buffer.append_i(int b) Appends anint.(package private) ByteBufferappendHex(byte b) private static byte[]convertToBytes(int i) Converts an double (multiplied by 100 and cast to an int) into an array of bytes.(package private) static StringformatDouble(double d) Outputs adoubleinto a format suitable for the PDF.private static StringformatDouble(double d, ByteBuffer buf) Outputs adoubleinto a format suitable for the PDF.byte[](package private) voidreset()Sets the size to zero.voidsetSize(int size) (package private) intsize()Returns the current size of the buffer.byte[]Creates a newly allocated byte array.toString()Converts the buffer's contents into a string, translating bytes into characters according to the platform's default character encoding.voidwrite(byte[] b, int off, int len) voidwrite(int b) (package private) voidwriteTo(OutputStream out) Writes the complete contents of this byte buffer output to the specified output stream argument, as if by calling the output stream's write method usingout.write(buf, 0, count).Methods inherited from class OutputStream
close, flush, nullOutputStream, write
-
Field Details
-
count
private int countThe count of bytes in the buffer. -
buf
private byte[] bufThe buffer where the bytes are stored. -
byteCacheSize
private static int byteCacheSize -
byteCache
private static byte[][] byteCache -
ZERO
private static final byte ZERO- See Also:
-
chars
private static final char[] chars -
bytes
private static final byte[] bytes -
HIGH_PRECISION
private static boolean HIGH_PRECISIONIftruealways output floating point numbers with 6 decimal digits. Iffalseuses the faster, although less precise, representation. -
dfs
-
-
Constructor Details
-
ByteBuffer
public ByteBuffer()Creates new ByteBuffer with capacity 128 -
ByteBuffer
public ByteBuffer(int size) Creates a byte buffer with a certain capacity.- Parameters:
size- the initial capacity
-
-
Method Details
-
convertToBytes
private static byte[] convertToBytes(int i) Converts an double (multiplied by 100 and cast to an int) into an array of bytes.- Parameters:
i- the int- Returns:
- a byte array
-
append_i
Appends anint. The size of the array will grow by one.- Parameters:
b- the int to be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends the subarray of thebytearray. The buffer will grow bylenbytes.- Parameters:
b- the array to be appendedoff- the offset to the start of the arraylen- the length of bytes to append- Returns:
- a reference to this
ByteBufferobject
-
append
Appends an array of bytes.- Parameters:
b- the array to be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends aStringto the buffer. TheStringis converted according to the encoding ISO-8859-1.- Parameters:
str- theStringto be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends acharto the buffer. Thecharis converted according to the encoding ISO-8859-1.- Parameters:
c- thecharto be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends anotherByteBufferto this buffer.- Parameters:
buf- theByteBufferto be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends the string representation of anint.- Parameters:
i- theintto be appended- Returns:
- a reference to this
ByteBufferobject
-
append
-
appendHex
-
append
Appends a string representation of afloataccording to the Pdf conventions.- Parameters:
i- thefloatto be appended- Returns:
- a reference to this
ByteBufferobject
-
append
Appends a string representation of adoubleaccording to the Pdf conventions.- Parameters:
d- thedoubleto be appended- Returns:
- a reference to this
ByteBufferobject
-
formatDouble
Outputs adoubleinto a format suitable for the PDF.- Parameters:
d- a double- Returns:
- the
Stringrepresentation of thedouble
-
formatDouble
Outputs adoubleinto a format suitable for the PDF.- Parameters:
d- a doublebuf- a ByteBuffer- Returns:
- the
Stringrepresentation of thedoubleifbufisnull. Ifbufis notnull, then the double is appended directly to the buffer and this methods returnsnull.
-
reset
void reset()Sets the size to zero. -
toByteArray
public byte[] toByteArray()Creates a newly allocated byte array. Its size is the current size of this output stream and the valid contents of the buffer have been copied into it.- Returns:
- the current contents of this output stream, as a byte array.
-
size
int size()Returns the current size of the buffer.- Returns:
- the value of the
countfield, which is the number of valid bytes in this byte buffer.
-
setSize
public void setSize(int size) -
toString
-
writeTo
Writes the complete contents of this byte buffer output to the specified output stream argument, as if by calling the output stream's write method usingout.write(buf, 0, count).- Parameters:
out- the output stream to which to write the data.- Throws:
IOException- if an I/O error occurs.
-
write
- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) - Overrides:
writein classOutputStream
-
getBuffer
public byte[] getBuffer()
-