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

org.zwobble.mammoth.internal.docx.DocxFiles Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package org.zwobble.mammoth.internal.docx;

import java.io.IOException;
import java.io.InputStream;

public class DocxFiles {
    static InputStream getInputStream(DocxFile file, String name) throws IOException {
        return file.tryGetInputStream(name)
            .orElseThrow(() -> new IOException("Missing entry in file: " + name));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy