thanks ur help,withe the zipoutputstream,

2009-01-12 Thread wch2001
with http://letmegooglethatforyou.com/?q=java+zip+files, I can get the zipoutputstream, How can i export it ? Need to use the following AbstractResourceStreamWriter , right ? how can i override write method? Sorry to ask so stupid question, thanks for help. AbstractR

Re: thanks ur help,withe the zipoutputstream,

2009-01-12 Thread Peter Ertl
just replace throw new UnsupportedOperationException("Not supported yet."); with your own code :-) Am 13.01.2009 um 03:32 schrieb wch2001: with http://letmegooglethatforyou.com/?q=java+zip+files, I can get the zipoutputstream, How can i export it ? Need t

Re: thanks ur help,withe the zipoutputstream,

2009-01-12 Thread Piller Sébastien
Just write your data to the OutputStream you receive as parameter. But the zipping step (creating the ZipOutputStream, adding some crc checks, etc) is not related to wicket at all. Maybe you should ask on some other java list (this is part of java.util api) wch2001 a écrit : with http://let

Re: thanks ur help,withe the zipoutputstream,

2009-01-13 Thread wch2001
thanks , pills, it is ok to work Pills wrote: > > Just write your data to the OutputStream you receive as parameter. > > But the zipping step (creating the ZipOutputStream, adding some crc > checks, etc) is not related to wicket at all. Maybe you should ask on > some other java list (this i