java如何接受页面传过来的参数?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java如何接受页面传过来的参数?相关的知识,希望对你有一定的参考价值。

比如页面a.jsp?name=111&pwd=234&type=1如何接受?

对于使用a.jsp?param1形式传递参数的页面,在backingBean中采用读取requestParameter参数的方式获得。 FacesContext facesContext = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) facesContext.getExternalContext().getRequest();
String value = request .getParameter(parameterName);
参考技术A String name = request.getparameter("name"); 参考技术B 最基本的就是 String name = request.getParameter("name");
对应的页面为
<form>
<input type="text" name="name" />

<input type="submit" value="提交" />

</form>
参考技术C 使用request对象来获取

以上是关于java如何接受页面传过来的参数?的主要内容,如果未能解决你的问题,请参考以下文章

java后台接收前台传过来的参数只能是字符串类型吗?

java 接收url中参数带 % %传过来的值

java的servlet里如何获取jsp页面上用ajax传过来的文件?

js获取页面传过来的参数

JQuery可以获取从另一个页面传过来的值吗

后台怎么接受并解析前端ajax传过来的json