我现在的问题就是,我在后台的控制器中去调用一个方法,他的返回值是String,我现在想将我得到的String传给一个页面(成功页面),要这个String像其他的html标签一样  能成功的解析。
下面是我后台控制器的代码。
public class PeccancyController extends AbstractController {
    private String successView;
public String getSuccessView() {
return successView;
}
public void setSuccessView(String successView) {
this.successView = successView;
}
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest arg0,
HttpServletResponse arg1) throws Exception {
// TODO Auto-generated method stub
ModelAndView mv=new ModelAndView();
TestMain x=new TestMain();
String title=x.getConment("http://sslk.bjjtgl.gov.cn/jgjww/wzcx/wzcx_preview.jsp?sf=11&carno=GC1538&fdjh=703988", "table", "style", "border-collapse:collapse");
mv.addObject("abc",title);这里是将返回的值传给页面
mv.setViewName(getSuccessView());//跳转成功页面
return mv;
}}
我成功页面的代码
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ include file="/WEB-INF/jsp/common/taglibs.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
aaaaa
<c:out value="${abc}"/>这里是我取得的值
</body>
</html>