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:
- K.Venugopal@sun.com
-
-
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 voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(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:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
-