CachedCharsetCoding

public class CachedCharsetCoding

Lazily creates and caches a java.nio.CharsetEncoder, java.nio.CharsetDecoder pair for each calling thread.

Author

jmoringe

Constructors

CachedCharsetCoding

public CachedCharsetCoding(Charset charset)

Creates a per-thread cache for encoder-decoder pairs for the given character set.

Parameters

charset – The character set that should be used for en- and decoding.

Methods

getDecoder

public CharsetDecoder getDecoder()

Returns the decoder for the current thread (potentially after creating it).

Returns

The decoder.

getEncoder

public CharsetEncoder getEncoder()

Returns the encoder for the current thread (potentially after creating it).

Returns

The encoder.