protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
....
....
getServletContext().getRequestDispatcher("/output.jsp").forward(request, response);
}
我需要的是不要在doPost
. 我有一个字符串(平面文本),我需要像 Servlet 请求一样响应它。我怎样才能做到这一点?