Пример #1
0
 private static void sendBinaryResponse(HttpServletResponse res, byte[] bytes) throws IOException {
   res.setContentType("application/binary-encoded");
   OutputStream out = res.getOutputStream(); // care to handle errors later?
   out.write(bytes);
   out.flush();
 }