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();

  }

 }
相關文章
相關標籤/搜索