public class CRLFOutputStream
extends java.io.FilterOutputStream
| Modifier and Type | Field and Description |
|---|---|
static int |
CR
The CR octet.
|
static byte[] |
CRLF
The CR/LF pair.
|
protected int |
last
The last byte read.
|
static int |
LF
The LF octet.
|
| Constructor and Description |
|---|
CRLFOutputStream(java.io.OutputStream out)
Constructs a CR/LF output stream connected to the specified output stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
write(byte[] b)
Writes a byte array to the underlying stream.
|
void |
write(byte[] b,
int off,
int len)
Writes a portion of a byte array to the underlying stream.
|
void |
write(int ch)
Writes a character to the underlying stream.
|
void |
write(java.lang.String text)
Writes the specified ASCII string to the underlying stream.
|
void |
writeln()
Writes a newline to the underlying stream.
|
public static final int CR
public static final int LF
public static final byte[] CRLF
protected int last
public CRLFOutputStream(java.io.OutputStream out)
public void write(int ch)
throws java.io.IOException
write in class java.io.FilterOutputStreamjava.io.IOException - if an I/O error occurredpublic void write(byte[] b)
throws java.io.IOException
write in class java.io.FilterOutputStreamjava.io.IOException - if an I/O error occurredpublic void write(byte[] b,
int off,
int len)
throws java.io.IOException
write in class java.io.FilterOutputStreamjava.io.IOException - if an I/O error occurredpublic void write(java.lang.String text)
throws java.io.IOException
java.io.IOException - if an I/O error occurredpublic void writeln()
throws java.io.IOException
java.io.IOException - if an I/O error occurred© Copyright 2003 The Free Software Foundation, all rights reserved