request.setCharacterEncoding("utf-8");response.setContentType("text/html;charset=utf-8");out.clear();out = pageContext.pushBody();OutputStream os = response.getOutputStream();int width = 400, height = 300;Font font = new Font("Monospaced", Font.PLAIN, 11);try {BufferedImage buffer_image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);Graphics g = buffer_image.getGraphics();g.setFo..