Package net.sf.jasperreports.engine.util
Class FileBufferedWriter
- java.lang.Object
-
- java.io.Writer
-
- net.sf.jasperreports.engine.util.FileBufferedWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
public class FileBufferedWriter extends Writer
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description FileBufferedWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
dispose()
void
flush()
boolean
isEmpty()
void
write(char[] cbuf, int off, int len)
void
writeData(Writer writer)
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
writeData
public void writeData(Writer writer)
-
dispose
public void dispose()
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
-
write
public void write(char[] cbuf, int off, int len) throws IOException
- Specified by:
write
in classWriter
- Throws:
IOException
-
-