我正在使用 Eclipse 開(kāi)發(fā)一個(gè) Web 服務(wù),為了嘗試它,我啟動(dòng)了 tomcat 服務(wù)器并嘗試使用參數(shù)的 http 請(qǐng)求。問(wèn)題是我給出的參數(shù)似乎被忽略了: protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); if(session.getAttribute("lat") == null && session.getAttribute("lon") == null) { session.setAttribute("lat", request.getAttribute("lat")); session.setAttribute("lon", request.getAttribute("lon")); response.setContentType("text/plain"); response.getWriter().append("RECEIVED"); } else {使用調(diào)試器,我可以看到該對(duì)象request不包含我的參數(shù)。
1 回答

翻翻過(guò)去那場(chǎng)雪
TA貢獻(xiàn)2065條經(jīng)驗(yàn) 獲得超14個(gè)贊
您正在嘗試獲取 HttpSession 屬性,但不是 URL 中傳遞的參數(shù)。你需要使用
request.getParameter("lat");
以字符串形式返回請(qǐng)求參數(shù)的值,如果參數(shù)不存在則返回 null。請(qǐng)求參數(shù)是隨請(qǐng)求一起發(fā)送的額外信息。對(duì)于 HTTP Servlet,參數(shù)包含在查詢(xún)字符串或發(fā)布的表單數(shù)據(jù)中。
您還可以獲取所有參數(shù)Map
Map<String,String[]>?getParameterMap()
返回此請(qǐng)求的參數(shù)的 java.util.Map。
請(qǐng)求參數(shù)是隨請(qǐng)求一起發(fā)送的額外信息。對(duì)于 HTTP Servlet,參數(shù)包含在查詢(xún)字符串或發(fā)布的表單數(shù)據(jù)中。
添加回答
舉報(bào)
0/150
提交
取消