com.sun.mail.util
Class CRLFOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by com.sun.mail.util.CRLFOutputStream
All Implemented Interfaces:
Closeable, Flushable
Direct Known Subclasses:
SMTPOutputStream

public class CRLFOutputStream
extends FilterOutputStream

Convert lines into the canonical format, that is, terminate lines with the CRLF sequence.

Author:
John Mani

Field Summary
protected  boolean atBOL
           
protected  int lastb
           
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
CRLFOutputStream(OutputStream os)
           
 
Method Summary
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
 void write(int b)
           
 void writeln()
           
 
Methods inherited from class java.io.FilterOutputStream
close, flush
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

lastb

protected int lastb

atBOL

protected boolean atBOL
Constructor Detail

CRLFOutputStream

public CRLFOutputStream(OutputStream os)
Method Detail

write

public void write(int b)
           throws IOException
Overrides:
write in class FilterOutputStream
Throws:
IOException

write

public void write(byte[] b)
           throws IOException
Overrides:
write in class FilterOutputStream
Throws:
IOException

write

public void write(byte[] b,
                  int off,
                  int len)
           throws IOException
Overrides:
write in class FilterOutputStream
Throws:
IOException

writeln

public void writeln()
             throws IOException
Throws:
IOException


Copyright © 2011 Sun Microsystems, Inc.. All Rights Reserved.