Class Base64Engine.EncodedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.adobe.internal.pdftoolkit.core.filter.Base64Engine.EncodedOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
- Enclosing class:
- Base64Engine
public static class Base64Engine.EncodedOutputStream extends java.io.OutputStreamCreate an output stream that writes base64-encoded bytes to the supplied stream
-
-
Constructor Summary
Constructors Constructor Description EncodedOutputStream(java.io.OutputStream destination)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(int b)
-
-
-
Method Detail
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(int b) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
-