在json中发出回应

时间:2012-02-20 13:48:21

标签: java json struts2

我正在使用json在struts2中工作,我的工作是将网络代码转换为java我正在努力转换以下代码,是在没有使用响应和请求的情况下调用json的任何对象

//clears the existing HTML
    Response.Clear();
//change content type       
    Response.ContentType = CommonConstants.Common.CONTENT_TYPE_TEXT_PLAIN;  
    Response.Write(strJSON.ToString());
//writes out the new name       
    Response.End();

上面的代码是.net我很难转换为java。因为我不应该使用HttpServletRequest或HttpServletResponse对象。

提前致谢

1 个答案:

答案 0 :(得分:1)

您需要回复,即使这可能对您隐藏。 See here

您可以通过实施ServletResponseAware

来获取行动中的回复