no meu servlet coloco o seguinte:
public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException {
this.req = req;
res.setContentType("text/html; UTF-8");
m = new HashMap();
m.put(HttpServletRequest.class, req);
m.put(HttpServletResponse.class, res);
m.put(HttpServlet.class, this);
criarClasse();
}
mas na JSP só aparece o seguinte:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
O q q eu faço p aparecer utf-8 ?