All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.moodysalem.phantomjs.wrapper.DeleteOnCloseFileInputStream Maven / Gradle / Ivy

The newest version!
package com.moodysalem.phantomjs.wrapper;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.Files;

/**
 * This input stream deletes the file after closing. This is used to deliver the result of a render call so that
 * files are not left on disk after usage.
 */
class DeleteOnCloseFileInputStream extends FileInputStream {
    private File file;

    DeleteOnCloseFileInputStream(File file) throws FileNotFoundException {
        super(file);
        this.file = file;
    }

    @Override
    public void close() throws IOException {
        try {
            super.close();
        } finally {
            if (file != null) {
                Files.deleteIfExists(file.toPath());
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy