Counts chars encoded as bytes up to a certain limit (capacity of byte buffer). size() returns the number of bytes, it will return -1 if the capacity was reached or an error occurred. this class is useful for calculating the content length of a HttpServletResponse before the response has been committed
Constructor and description |
---|
BoundedCharsAsEncodedBytesCounter
() |
BoundedCharsAsEncodedBytesCounter
(int capacity, java.lang.String encoding) |
Type Params | Return Type | Name and description |
---|---|---|
|
int |
getCapacity() |
|
java.io.Writer |
getCountingWriter() |
|
java.lang.String |
getEncoding() |
|
boolean |
isWriterReferenced() |
|
void |
setCapacity(int capacity) |
|
void |
setEncoding(java.lang.String encoding) |
|
int |
size() |
|
void |
update(java.lang.String str) |
|
void |
update(char[] buf) |
|
void |
update(char[] buf, int off, int len) |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |