0

私がやろうとしているのは、生成されたcsvファイルを圧縮することです。このコードがここに来るまで、ファイルは問題なく生成されます。zos.close()したがって、コードはここに例外をスローします

try {
    FileOutputStream fos = new FileOutputStream(file.getPath());
    ZipOutputStream zos = new ZipOutputStream(fos);
    FileInputStream in = new FileInputStream(file.getPath());
    String fullCSVFileName = file.getName();
    String fullFileName = fullCSVFileName.substring(0, fullCSVFileName.length()-3);
    String fullZipFileName = fullFileName + "zip";
    ZipEntry ze= new ZipEntry(fullZipFileName);
    if(ze != null) zos.putNextEntry(ze);
    fos = new FileOutputStream("C:\\sourceLocation\\"+fullZipFileName);
    zos = new ZipOutputStream(fos);

    byte[] buffer = new byte[1024];

    int len;// = in.read(buffer);
    while ((len = in.read(buffer)) > 0) {
        Logger.debug("in Loop, len = " + len);
        zos.write(buffer, 0, len);
    }
    in.close();
    zos.closeEntry();    
    zos.close();

    Logger.debug("Zipping complete!");

} catch(IOException ex) {
    Logger.error(ex);
}

修正されたコード

try{

    String fullCSVFileName = file.getName();
    String fullFileName = fullCSVFileName.substring(0, fullCSVFileName.length()-3);                     
    String fullZipFileName = fullFileName + "zip";                      
    FileOutputStream fos = new FileOutputStream("C:\\sourceLocation\\"+fullZipFileName);
    ZipOutputStream zos = new ZipOutputStream(fos);
    FileInputStream in = new FileInputStream(file.getPath());

    ZipEntry ze= new ZipEntry(fullZipFileName);
    if(ze != null){
        zos.putNextEntry(ze);
    }

    byte[] buffer = new byte[1024];

    int len;    
    while ((len = in.read(buffer)) > 0) {
        zos.write(buffer, 0, len);
    }

    in.close();
    zos.closeEntry();
    zos.close();

    Logger.debug("Zipping complete!");

}catch(IOException ex){
    Logger.error(ex);
}
4

1 に答える 1

1

あなたはあなたのコードの一番上に一度作成fosします:zos

FileOutputStream fos = new FileOutputStream(file.getPath());
ZipOutputStream zos = new ZipOutputStream(fos);

次に、ZipEntryを追加します。

if(ze != null) zos.putNextEntry(ze);

その後、後でそれらを再定義します。

fos = new FileOutputStream("C:\\sourceLocation\\"+fullZipFileName);
zos = new ZipOutputStream(fos);

次に、新しいzosを閉じます。最初のzos(ZipEntryがあった)を閉じたり、書き込みを行ったり、2番目のzos(ZipEntryなしで閉じようとした)にZipEntryを追加したりすることはありません。したがって、少なくとも1つのZipEntryエラー。

- - - - - - 編集 - - - - - - -

追加してみてくださいzos.finish()、また、あなたのclose()メソッドはfinallyブロックにあるはずです...

ZipOutputStream zos = null;
FileInputStream in = null;
try{

    String fullCSVFileName = file.getName();
    String fullFileName = fullCSVFileName.substring(0, fullCSVFileName.length()-3);                     
    String fullZipFileName = fullFileName + "zip";                      
    ZipOutputStream zos = new ZipOutputStream(
            new FileOutputStream("C:\\sourceLocation\\"+fullZipFileName));
    in = new FileInputStream(file.getPath());

    zos.putNextEntry( new ZipEntry(fullZipFileName) );

    byte[] buffer = new byte[1024];

    int len;    
    while ((len = in.read(buffer)) > 0) {
        zos.write(buffer, 0, len);
    }

    zos.finish();

    Logger.debug("Zipping complete!");

}catch(IOException ex){
    Logger.error(ex);
}finally {
    if ( zos != null ) {
        try {
            zos.close();
        } catch ( Exception e ) {}
    }
    if ( in != null ) {
        try {
            in.close();
        } catch ( Exception e ) {}
    }
}
于 2013-03-22T15:39:17.243 に答える