Package com.twelvemonkeys.io.enc
Class Base64Encoder
- java.lang.Object
-
- com.twelvemonkeys.io.enc.Base64Encoder
-
- All Implemented Interfaces:
Encoder
public class Base64Encoder extends java.lang.Object implements Encoder
Encoderimplementation for standard base64 encoding.- Version:
- $Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/io/enc/Base64Encoder.java#2 $
- See Also:
- RFC 1421,
RFC 2045,
Base64Decoder
-
-
Constructor Summary
Constructors Constructor Description Base64Encoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidencode(java.io.OutputStream stream, java.nio.ByteBuffer buffer)Encodes up tobuffer.remaining()bytes into the given input stream, from the given buffer.
-
-
-
Method Detail
-
encode
public void encode(java.io.OutputStream stream, java.nio.ByteBuffer buffer) throws java.io.IOExceptionDescription copied from interface:EncoderEncodes up tobuffer.remaining()bytes into the given input stream, from the given buffer.
-
-