Package org.apache.pdfbox.pdfwriter
Class ContentStreamWriter
- java.lang.Object
-
- org.apache.pdfbox.pdfwriter.ContentStreamWriter
-
public class ContentStreamWriter extends java.lang.ObjectA class that will take a list of tokens and write out a stream with them.- Version:
- $Revision: 1.8 $
- Author:
- Ben Litchfield
-
-
Constructor Summary
Constructors Constructor Description ContentStreamWriter(java.io.OutputStream out)This will create a new content stream writer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwriteTokens(java.util.List tokens)This will write out the list of tokens to the stream.voidwriteTokens(java.util.List tokens, int start, int end)This will write out the list of tokens to the stream.
-
-
-
Method Detail
-
writeTokens
public void writeTokens(java.util.List tokens, int start, int end) throws java.io.IOExceptionThis will write out the list of tokens to the stream.- Parameters:
tokens- The tokens to write to the stream.start- The start index into the list of tokens.end- The end index into the list of tokens.- Throws:
java.io.IOException- If there is an error writing to the stream.
-
writeTokens
public void writeTokens(java.util.List tokens) throws java.io.IOExceptionThis will write out the list of tokens to the stream.- Parameters:
tokens- The tokens to write to the stream.- Throws:
java.io.IOException- If there is an error writing to the stream.
-
-