Class FileBufferedZipEntry
- java.lang.Object
-
- net.sf.jasperreports.engine.export.zip.FileBufferedZipEntry
-
- All Implemented Interfaces:
ExportZipEntry
public class FileBufferedZipEntry extends Object implements ExportZipEntry
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description FileBufferedZipEntry(String name)
FileBufferedZipEntry(String name, byte[] bytes)
FileBufferedZipEntry(String name, int memoryThreshold)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose()
String
getName()
OutputStream
getOutputStream()
Writer
getWriter()
void
writeData(OutputStream os)
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getName
in interfaceExportZipEntry
-
getWriter
public Writer getWriter()
- Specified by:
getWriter
in interfaceExportZipEntry
-
getOutputStream
public OutputStream getOutputStream()
- Specified by:
getOutputStream
in interfaceExportZipEntry
-
writeData
public void writeData(OutputStream os) throws IOException
- Specified by:
writeData
in interfaceExportZipEntry
- Throws:
IOException
-
dispose
public void dispose()
- Specified by:
dispose
in interfaceExportZipEntry
-
-