public class BufferedWriter extends Writer
Constructor and Description |
---|
BufferedWriter(Writer writer) |
BufferedWriter(Writer writer,
int i) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
newLine() |
void |
write(char[] ac,
int i,
int j) |
void |
write(int i) |
void |
write(String s,
int i,
int j) |
public BufferedWriter(Writer writer)
writer
- ?public BufferedWriter(Writer writer, int i)
writer
- ?i
- ?public void close() throws IOException
close
in class Writer
IOException
- ?public void flush() throws IOException
flush
in class Writer
IOException
- ?public void newLine() throws IOException
IOException
- ?public void write(int i) throws IOException
write
in class Writer
i
- ?IOException
- ?public void write(String s, int i, int j) throws IOException
write
in class Writer
s
- ?i
- ?j
- ?IOException
- ?public void write(char[] ac, int i, int j) throws IOException
write
in class Writer
ac
- ?i
- ?j
- ?IOException
- ?