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

cc.kkon.gmhttps.utils.ServletUtils Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
package cc.kkon.gmhttps.utils;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class ServletUtils {

    public static void write(HttpServletResponse resp, byte[] bytes) throws IOException {
        ServletOutputStream out = resp.getOutputStream();
        out.write(bytes);
        out.flush();
        out.close();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy