大きなバイトのチャンクを書き込むために ZipOutputStream を使用したいのですが、何が推奨されますか?
FileOutputStream fos = new FileOutputStream(fileName);
...
ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(fos));
または
ZipOutputStream zos = new ZipOutputStream(new PrintStream(fos));