Package org.mozilla.jss.util
Class Base64OutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
org.mozilla.jss.util.Base64OutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
An output stream filter that takes arbitrary bytes and outputs their
base64 encoding. Call flush() or close() to write out the final padding.
The class also automatically puts line breaks in the output stream.
-
Field Summary
Fields inherited from class java.io.FilterOutputStream
out
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a stream that does not insert line breaks.Base64OutputStream
(PrintStream out, int quadsPerLine) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This flushes the stream and closes the next stream downstream.void
flush()
Calling this will put the ending padding on the base64 stream, so don't call it until you have no data left.void
write
(byte[] buffer) void
write
(byte[] buffer, int offset, int count) void
write
(int oneByte) Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
Base64OutputStream
Create a stream that does not insert line breaks. To have line breaks, use the other constructor. -
Base64OutputStream
- Parameters:
quadsPerLine
- Number of 4-character blocks to write before outputting a line break. For example, for 76-characters per line, pass in 76/4 = 19.
-
-
Method Details
-
write
- Overrides:
write
in classFilterOutputStream
- Throws:
IOException
-
close
This flushes the stream and closes the next stream downstream.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classFilterOutputStream
- Throws:
IOException
-
flush
Calling this will put the ending padding on the base64 stream, so don't call it until you have no data left. The class does no unnecessary buffering, so you probably shouldn't call it at all.- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classFilterOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classFilterOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classFilterOutputStream
- Throws:
IOException
-