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

org.visallo.web.util.HttpPartUtil Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.visallo.web.util;

import org.apache.commons.io.IOUtils;

import javax.servlet.http.Part;
import java.io.*;

public class HttpPartUtil {
    public static void copyPartToOutputStream(Part part, OutputStream out) throws IOException {
        try (InputStream in = part.getInputStream()) {
            IOUtils.copy(in, out);
        }
    }

    public static void copyPartToFile(Part part, File outFile) throws IOException {
        try (FileOutputStream out = new FileOutputStream(outFile)) {
            copyPartToOutputStream(part, out);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy