如何使用 JSP 读取 URL 中传递的请求参数?
以下 URL 将使用 GET 方法向 HelloForm 程序传递两个值。
href="https://127.0.0.1:8080/main.jsp?first_name=ZARA&last_name=ALI"
以下为处理来自网络浏览器输入内容的 main.jsp JSP 程序。我们将使用 getParameter() 方法,该方法可以非常轻松地访问传递的信息 −
<html> <head> <title>Using GET Method to Read Form Data</title> </head> <body> <h1>Using GET Method to Read Form Data</h1> <ul> <li><p><b>First Name:</b> <%= request.getParameter("first_name")%> </p></li> <li><p><b>Last Name:</b> <%= request.getParameter("last_name")%> </p></li> </ul> </body> </html>
现在,在浏览器的位置:框中输入href="https://127.0.0.1:8080/main.jsp?first_name=ZARA&last_name=ALI"。这会生成以下结果 −
使用 GET 方法读取表单数据
|
广告