Package com.exedio.cope.pattern
Class MediaUtil
- java.lang.Object
-
- com.exedio.cope.pattern.MediaUtil
-
public final class MediaUtil extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
send(String contentType, byte[] body, HttpServletResponse response)
static void
send(String contentType, ByteArrayOutputStream body, HttpServletResponse response)
static void
send(String contentType, File body, HttpServletResponse response)
static void
send(String contentType, String charsetName, String body, HttpServletResponse response)
static void
send(String contentType, Charset charset, String body, HttpServletResponse response)
-
-
-
Method Detail
-
send
public static void send(String contentType, Charset charset, String body, HttpServletResponse response) throws IOException
- Throws:
IOException
-
send
public static void send(String contentType, String charsetName, String body, HttpServletResponse response) throws IOException
- Throws:
IOException
-
send
public static void send(String contentType, byte[] body, HttpServletResponse response) throws IOException
- Throws:
IOException
-
send
public static void send(String contentType, ByteArrayOutputStream body, HttpServletResponse response) throws IOException
- Throws:
IOException
-
send
public static void send(String contentType, File body, HttpServletResponse response) throws IOException
- Throws:
IOException
-
-