JSON格式输出Struts2

public void JSON(Object object,String charset){

  getHttpResponse().setCharacterEncoding(charset);

  getHttpResponse().setContentType("text/html;charset="+charset);

  try {

   JSONUtil.serialize(getHttpResponse().getWriter(), object);

   getHttpResponse().getWriter().flush();

   getHttpResponse().getWriter().close();

  } catch (Exception e) {

   e.printStackTrace();

  }

 }

你可能感兴趣的:(JSON格式输出Struts2)