Class Base64OutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.sun.xml.ws.security.opt.impl.util.Base64OutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class Base64OutputStream extends OutputStream
- Author:
- [email protected]
-
-
Constructor Summary
Constructors Constructor Description Base64OutputStream(OutputStream os)
Creates a new instance of Base64OutputStream
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream
-
-
-
-
Constructor Detail
-
Base64OutputStream
public Base64OutputStream(OutputStream os)
Creates a new instance of Base64OutputStream
-
-
Method Detail
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] b) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(int b) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
-