public final class VelocityWriter extends Writer implements Filter
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_BUFFER
constant indicating that the Writer is buffered and is using the
implementation default buffer size
|
static int |
NO_BUFFER
constant indicating that the Writer is not buffering output
|
static int |
UNBOUNDED_BUFFER
constant indicating that the Writer is buffered and is unbounded;
this is used in BodyContent
|
Constructor and Description |
---|
VelocityWriter(Writer writer)
Create a buffered character-output stream that uses a default-sized
output buffer.
|
VelocityWriter(Writer writer,
int sz,
boolean autoFlush)
Create a new buffered character-output stream that uses an output
buffer of the given size.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Discard the output buffer.
|
void |
close()
Close the stream.
|
void |
flush()
Flush the stream.
|
int |
getBufferSize()
This method returns the size of the buffer used by the JspWriter.
|
int |
getRemaining() |
boolean |
isAutoFlush()
This method indicates whether the JspWriter is autoFlushing.
|
void |
recycle(Writer writer)
resets this class so that it can be reused
|
void |
write(char[] buf)
Write an array of characters.
|
void |
write(char[] cbuf,
int off,
int len)
Write a portion of an array of characters.
|
void |
write(int c)
Write a single character.
|
void |
write(String s)
Write a string.
|
void |
write(String s,
int off,
int len)
Write a portion of a String.
|
void |
writeReference(String ref)
Send the content of a reference, e.g.; $foo, to the writer.
|
public static final int NO_BUFFER
public static final int DEFAULT_BUFFER
public static final int UNBOUNDED_BUFFER
public VelocityWriter(Writer writer)
writer
- Writer to wrap aroundpublic VelocityWriter(Writer writer, int sz, boolean autoFlush)
writer
- Writer to wrap aroundsz
- Output-buffer size, a positive integerautoFlush
- IllegalArgumentException
- If sz is <= 0public int getBufferSize()
public boolean isAutoFlush()
public final void clear()
public final void flush() throws IOException
flush
in interface Flushable
flush
in class Writer
IOException
public final void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Writer
IOException
public final int getRemaining()
public final void write(int c) throws IOException
write
in class Writer
c
- IOException
public final void write(char[] cbuf, int off, int len) throws IOException
Ordinarily this method stores characters from the given array into
this stream's buffer, flushing the buffer to the underlying stream as
needed. If the requested length is at least as large as the buffer,
however, then this method will flush the buffer and write the characters
directly to the underlying stream. Thus redundant
DiscardableBufferedWriter
s will not copy data unnecessarily.
write
in class Writer
cbuf
- A character arrayoff
- Offset from which to start reading characterslen
- Number of characters to writeIOException
public final void write(char[] buf) throws IOException
write
in class Writer
buf
- IOException
public final void write(String s, int off, int len) throws IOException
write
in class Writer
s
- String to be writtenoff
- Offset from which to start reading characterslen
- Number of characters to be writtenIOException
public final void write(String s) throws IOException
write
in class Writer
s
- IOException
public final void recycle(Writer writer)
writer
- public void writeReference(String ref) throws IOException
writeReference
in interface Filter
IOException
Copyright © 2000–2021 The Apache Software Foundation. All rights reserved.