servlet怎样在get里面调用post方法

2025-03-06 22:44:46
推荐回答(1个)
回答1:

protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doPost(req,resp);
}