public class Base64Encoder extends FilterOutputStream
This class can be used for encoding strings:
or for encoding streams:String unencoded = "webmaster:try2gueSS"; String encoded = Base64Encoder.encode(unencoded);
OutputStream out = new Base64Encoder(System.out);
out| Constructor and Description |
|---|
Base64Encoder(OutputStream out)
Constructs a new Base64 encoder that writes output to the given OutputStream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the stream, this MUST be called to ensure proper padding is written to the end of the
output stream.
|
static String |
encode(byte[] bytes)
Returns the encoded form of the given unencoded string.
|
static String |
encode(String unencoded)
Returns the encoded form of the given unencoded string.
|
void |
write(byte[] buf,
int off,
int len)
Writes the given byte array to the output stream in an encoded form.
|
void |
write(int b)
Writes the given byte to the output stream in an encoded form.
|
flush, writepublic Base64Encoder(OutputStream out)
out - the output streampublic void write(int b)
throws IOException
write in class FilterOutputStreamIOException - if an I/O error occurspublic void write(byte[] buf,
int off,
int len)
throws IOException
write in class FilterOutputStreambuf - the data to be writtenoff - the start offset of the datalen - the length of the dataIOException - if an I/O error occurspublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class FilterOutputStreamIOException - if an I/O error occurspublic static String encode(String unencoded)
unencoded - the string to encodepublic static String encode(byte[] bytes)
bytes - the bytes to encodeCopyright © 2017. All rights reserved.