Struts2中的action利用Ajax向页面回来数据,及解决返回的中文乱码

Struts2中的action利用Ajax向页面返回数据,及解决返回的中文乱码1,在action中的代码?HttpServletResponse

Struts2中的action利用Ajax向页面返回数据,及解决返回的中文乱码

1,在action中的代码

?

HttpServletResponse response = ServletActionContext.getResponse(); response.setContentType("text/html;charset=utf-8");    response.getWriter().print(str);
?要注意代码顺序