我正在使用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对象。
提前致谢