在Java中獲取表單提交的數據通常需要通過HttpServletRequest對象來實現。具體步驟如下:
HttpServletRequest request = req;
String username = request.getParameter("username");
String password = request.getParameter("password");
以上代碼中,getParameter()
方法用于獲取表單中指定參數名的值。
需要注意的是,獲取表單提交的數據前需要確保表單中的action
屬性指向當前Servlet的路徑,以便Servlet能夠接收到表單提交的數據。