jsp和Java获取参数

QueryProductByConditionAction(Servlet)的doPost中,

       //直接获取proId等

       StringproId = (String) request.getParameter("proId");

       StringproName = (String) request.getParameter("proName");

       ··· ···

float priceS =0, priceE = 0;

// 验证价格数据是否有效

if (null !=proPriceS && !"".equals(proPriceS)) { // 注意判断顺序

       // 转换为float

       priceS = Float.parseFloat(proPriceS);

}

 

       配置:queryProduct /doQueryProduct

 

补充:

若设置:

// 绑定登录用户到Session(一次浏览器开闭)会话中

request.getSession().setAttribute("loginUser",u);

则获取:${sessionScope.loginUser.userName }

若设置:request.setAttribute("errorMes","用户名或者密码错误!");

则获取:${requestScope.errorMes }或者:<%=request.getAttribute("errorMes")%>

你可能感兴趣的:(jsp和Java获取参数)