| java.lang.Object org.apache.tomcat.util.buf.B2CConverter
All known Subclasses: org.apache.tomcat.util.buf.UTF8Decoder,
B2CConverter | public class B2CConverter (Code) | | Efficient conversion of bytes to character .
This uses the standard JDK mechansim - a reader - but provides mechanisms
to recycle all the objects that are used. It is compatible with JDK1.1
and up,
( nio is better, but it's not available even in 1.2 or 1.3 )
Not used in the current code, the performance gain is not very big
in the current case ( since String is created anyway ), but it will
be used in a later version or after the remaining optimizations.
|
BUFFER_SIZE | final static int BUFFER_SIZE(Code) | | |
B2CConverter | protected B2CConverter()(Code) | | |
B2CConverter | public B2CConverter(String encoding) throws IOException(Code) | | Create a converter, with bytes going to a byte buffer
|
recycle | public void recycle()(Code) | | Reset the internal state, empty the buffers.
The encoding remain in effect, the internal buffers remain allocated.
|
|
|