This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: ZipInputStream brokenness
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Per Bothner <per at bothner dot com>
- Cc: Adam Megacz <gcj at lists dot megacz dot com>, <java at gcc dot gnu dot org>
- Date: Mon, 2 Sep 2002 19:42:29 -0400 (EDT)
- Subject: Re: ZipInputStream brokenness
On Mon, 2 Sep 2002, Per Bothner wrote:
> Besides, I don't see any reason that you'd ever want to *not* buffer,
> at least when using a FileInputStream,.
Perhaps in bulk data copies? I'd guess a raw InputStream should
perform slightly better than any buffered stream for large enough reads.
(Of course zero buffering is best, as in Linux's sendfile system call.)
Jeff