I have this servlet:
public class SaveImage extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws
request.getRequestDispatcher("/WEB-INF/my.jsp").include(request, response);
But you should not a servlet for outputting html like that. Just use a jsp, with either or <%@ include file=".." %>
<%@ include file=".." %>