Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / July 2005

Tip: Looking for answers? Try searching our database.

Using ZipInputStream efficiently

Thread view: 
Chris Berg - 31 Jul 2005 20:01 GMT
Which one is best:

1:
 DataInputStream dis=new DataInputStream(
          new ZipInputStream(
          new FileInputStream(filename));
2:
 DataInputStream dis=new DataInputStream(
          new ZipInputStream(
          new BufferedInputStream(
          new FileInputStream(filename))));
3:
 DataInputStream dis=new DataInputStream(
          new BufferedInputStream(
          new ZipInputStream(
          new FileInputStream(filename))));
4:
 DataInputStream dis=new DataInputStream(
          new BufferedInputStream(
          new ZipInputStream(
          new BufferedInputStream(
          new FileInputStream(filename)))));

Chris
Chris Head - 31 Jul 2005 22:09 GMT
> Which one is best:
>
[quoted text clipped - 20 lines]
>
> Chris

Hi,
I'm guessing either 2 or 4. I would guess that ZipInputStream might well
issue repeated small reads in the process of doing its normal operations
(though I don't know this for sure), so those should be coalesced by
using a BufferedInputStream between it and FileInputStream. However, the
fact that you're using DataInputStream tells me that you're probably
reading small amounts at a time from the resulting unzipped stream as
well, so buffering between DIS and ZIS might also be useful so that the
Zip algorithm can work on large blocks of data at a time.

I guess the real answer is: benchmark it.

Chris


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.