java – 在servlet中包含jsp的内容

我有这个servlet:
public class SaveImage extends HttpServlet {

    protected void doGet(HttpServletRequest request,HttpServletResponse response) throws servletexception,IOException {
        PrintWriter out = null;
        try {
            out = response.getWriter();
            out.println("<html>");
            ...

            // I want to include here the content of this jsp:
            // /WEB-INF/myBox.jsp
            // (also,with the full context of the servlet)

            ...
            out.println("</html>");
            out.close();
        } catch (IOException e) {
            e.printstacktrace();
        }
    }
}

这样做是否有问题(响应已经提交?),我该怎么做?

解决方法

request.getRequestdispatcher("/WEB-INF/my.jsp").include(request,response);

但你不应该像这样输出html的servlet.只需使用jsp,其中包含< jsp:include />或<%@ include file =“..”%>

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...