Package com.sun.xml.wss.util
Class CRLFOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- com.sun.xml.wss.util.CRLFOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class CRLFOutputStream extends FilterOutputStream
Convert lines into the canonical format, that is, terminate lines with the CRLF sequence.- Author:
- John Mani
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanatBOLprotected intlastb-
Fields inherited from class java.io.FilterOutputStream
out
-
-
Constructor Summary
Constructors Constructor Description CRLFOutputStream(OutputStream os)
-
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)voidwriteln()-
Methods inherited from class java.io.FilterOutputStream
close, flush
-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
CRLFOutputStream
public CRLFOutputStream(OutputStream os)
-
-
Method Detail
-
write
public void write(int b) throws IOException- Overrides:
writein classFilterOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classFilterOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classFilterOutputStream- Throws:
IOException
-
writeln
public void writeln() throws IOException- Throws:
IOException
-
-