public abstract class CharacterWriter extends BufferedWriter
| Modifier and Type | Method and Description |
|---|---|
void |
writeCharacter(char ch) |
void |
writeCharacter(char[] cbuf) |
void |
writeCharacter(char[] cbuf,
int off,
int len) |
void |
writeCharacter(String str) |
void |
writeCharacter(String str,
int off,
int len) |
public void writeCharacter(char ch)
throws IOException
ch - IOException - Signals that an I/O exception has occurred.public void writeCharacter(char[] cbuf)
throws IOException
cbuf - IOException - Signals that an I/O exception has occurred.public void writeCharacter(char[] cbuf,
int off,
int len)
throws IOException
cbuf - off - len - IOException - Signals that an I/O exception has occurred.public void writeCharacter(String str) throws IOException
str - IOException - Signals that an I/O exception has occurred.public void writeCharacter(String str, int off, int len) throws IOException
str - off - len - IOException - Signals that an I/O exception has occurred.Copyright © 2021. All rights reserved.