public class LineWriter extends BufferedWriter
writeln() method
to output a lineDelimited line of text without
cluttering up code.| コンストラクタと説明 |
|---|
LineWriter(File file,
int sz,
String charset) |
LineWriter(File file,
String charset) |
LineWriter(OutputStream out,
int sz,
String charset) |
LineWriter(OutputStream out,
String charset) |
LineWriter(String filename,
int sz,
String charset) |
LineWriter(String filename,
String charset) |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
String |
toString()
Intended to simplify use when wrapping StringWriters.
|
void |
writeln() |
void |
writeln(String str) |
public LineWriter(String filename, String charset) throws UnsupportedEncodingException, FileNotFoundException
public LineWriter(String filename, int sz, String charset) throws UnsupportedEncodingException, FileNotFoundException
public LineWriter(File file, String charset) throws UnsupportedEncodingException, FileNotFoundException
public LineWriter(File file, int sz, String charset) throws UnsupportedEncodingException, IOException
public LineWriter(OutputStream out, String charset) throws UnsupportedEncodingException
public LineWriter(OutputStream out, int sz, String charset) throws UnsupportedEncodingException
public void writeln(String str) throws IOException
IOExceptionpublic void writeln()
throws IOException
IOExceptionCopyright © 2016. All Rights Reserved.