在本章中,我們將討論JSP中的表單處理。當需要從瀏覽器將一些傳遞到Web伺服器的資訊處理並最終傳遞到後端程式時,可能會遇到一些情況。瀏覽器使用兩種方法將此資訊傳遞到Web伺服器。 這些方法是分別是:GET
方法和POST
方法。
現在我們來介紹表單處理中的方法。
GET方法
GET
方法將附加的使用者資料資訊編碼並行送到請求的頁面。頁面和編碼資訊被分隔符 - ?
字元分隔開,如下 -
https://www.tw511.com/hello?key1=value1&key2=value2
GET
方法是將資訊從瀏覽器傳遞到Web伺服器的預設方法,它生成一個長字串,出現在瀏覽器的位址列框中。如果有密碼或其他敏感資訊傳遞到伺服器,建議最好不要使用GET
方法。
GET
方法具有大小限制:請求字串中最多只能有1024
個字元。
該資訊使用QUERY_STRING
檔頭傳遞,並且可以通過QUERY_STRING
環境變數進行存取,該變數可以使用getQueryString()
和getParameter()
方法來處理請求物件。
POST方法
通常更可靠的將資訊傳遞給後端程式是使用POST
方法。
POST
方法與GET
方法將資訊打包的方式完全相同,而不是將使用?
作為分隔符組成文字字串並在URL中傳送。 此訊息以標準輸入的形式傳送到後端程式,可以解析並用於處理。
JSP使用getParameter()
方法處理這種型別的請求,以讀取簡單引數的值,而getInputStream()
方法來讀取用戶端的二進位制資料流。
使用JSP讀取表單資料
JSP根據情況使用以下方法自動處理表單資料 -
getParameter()
- 呼叫request.getParameter()
方法來獲取表單引數的值。getParameterValues()
- 如果引數出現多次並返回多個值(例如核取方塊),則呼叫此方法。getParameterNames()
- 如果想要當前請求中的所有引數的完整列表,則呼叫此方法。getInputStream()
- 呼叫此方法讀取用戶端的二進位制資料流。為了方便演示,開啟Eclipse建立一個專案:FormProcessing 。其完整的目錄結構如下所示 -
以下URL將使用GET方法將兩個值傳遞給HelloForm
程式。
http://localhost:8080/FormProcessing/main.jsp?username=maxsu&[email protected]
以下是JSP程式(main.jsp
)處理由Web瀏覽器請求給出的輸入。這裡使用getParameter()
方法,這樣很容易存取傳遞的資訊 -
檔案: main.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>使用GET方法讀取URL請求資料</title>
</head>
<body>
<h1>使用GET方法讀取URL請求資料</h1>
<ul>
<li><p>
<b>UserName:</b>
<%=request.getParameter("username")%>
</p></li>
<li><p>
<b>Email:</b>
<%=request.getParameter("email")%>
</p></li>
</ul>
</body>
</html>
現在開啟瀏覽器,在位址列中輸入:http://localhost:8080/FormProcessing/main.jsp?username=maxsu&email=[email protected]
。 這將產生以下結果 -
以下是使用HTML FORM和提交按鈕傳遞兩個值的範例。這裡使用hello.html
來處理這個輸入。
檔案:hello.html -
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>使用者表單處理</title>
</head>
<body>
<div style="margin: auto; width: 80%;">
<form action="main.jsp" method="GET">
使用者名: <input type="text" name="username"> Email: <input
type="text" name="email" /> <input type="submit" value="提交" />
</form>
</div>
</body>
</html>
現在開啟瀏覽器,在位址列中輸入:http://localhost:8080/FormProcessing/hello.html
。 這將產生以下結果 -
填入資訊,提交表單,看到以下結果 -
在上面的JSP中進行一些修改來處理GET
和POST
方法。以下是使用GET
或POST
方法處理由Web瀏覽器給出的輸入JSP程式:post.jsp
。
因為上述JSP程式碼實現沒有變化,但是傳遞引數的方法需要改變為POST
,也不是將二進位制資料被傳遞給JSP程式。檔案處理相關概念將在單獨的章節中進行說明,我們需要讀取二進位制資料流。
檔案:post.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>使用Post方讀取請求資料</title>
</head>
<body>
<h1>使用Post方讀取表單資料</h1>
<ul>
<li><p>
<b>UserName:</b>
<%=request.getParameter("username")%>
</p></li>
<li><p>
<b>Email:</b>
<%=request.getParameter("email")%>
</p></li>
</ul>
</body>
</html>
以下是post.html檔案的內容 -
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>使用者表單處理</title>
</head>
<body>
<div style="margin: auto; width: 80%;">
<form action="post.jsp" method="post">
使用者名: <input type="text" name="username"> Email: <input
type="text" name="email" /> <input type="submit" value="提交" />
</form>
</div>
</body>
</html>
部署執行以上專案,然後開啟瀏覽器存取URL: http://localhost:8080/FormProcessing/post.html ,看到結果如下 -
分別填寫使用者名和Email,然後提交表單,結果如下所示 -
當表單資料需要多個選項時,可使用核取方塊。以下是具有兩個核取方塊的表單的範例HTML程式碼:checkbox.html 。
檔案:checkbox.html -
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>核取方塊資料處理範例</title>
</head>
<body>
<div style="margin: auto; width: 80%;">
<h2>選擇課程(多選)</h2>
<form action="checkbox.jsp" method="POST">
<input type="checkbox" name="maths" checked="checked" /> 數學 <input
type="checkbox" name="physics" /> 物理 <input type="checkbox"
name="chemistry" checked="checked" /> 化學 <input
type="submit" value="選擇提交" />
</form>
</div>
</body>
</html>
檔案:checkbox.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>核取方塊資料處理範例</title>
</head>
<body>
<div style="margin: auto; width: 80%;">
<h2>核取方塊資料處理範例</h2>
<ul>
<li><p>
<b>數學:</b>
<%=request.getParameter("maths")%>
</p></li>
<li><p>
<b>物理:</b>
<%=request.getParameter("physics")%>
</p></li>
<li><p>
<b>化學:</b>
<%=request.getParameter("chemistry")%>
</p></li>
</ul>
</div>
</body>
</html>
部署執行以上專案,然後開啟瀏覽器存取URL: http://localhost:8080/FormProcessing/checkbox.html ,看到結果如下 -
選擇對應選項然後提交,上述程式將產生以下結果 -
以下是使用HttpServletRequest
的getParameterNames()
方法讀取所有可用的表單引數的通用範例。此方法返回一個列舉,其中包含未指定順序的引數名稱。
當有了這個列舉後,就可以使用標準方式迴圈列舉,使用hasMoreElements()
方法來確定何時停止並使用nextElement()
方法來獲取每個引數名稱。
檔案:allFormParameters.html -
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>獲取所有表單資料</title>
<!-- file: allFormParameters.jsp -->
</head>
<body>
<body>
<div style="margin: auto; width: 80%;">
<h2>選擇課程(多選)</h2>
<form action="allFormParameters.jsp" method="POST">
<input type="checkbox" name="maths" checked="checked" value="math"/> 數學 <input
type="checkbox" name="physics" value="phys"/> 物理 <input type="checkbox"
name="chemistry" checked="checked" value="chem"/> 化學 <input type="submit"
value="選擇提交" />
</form>
</div>
</body>
</html>
檔案:allFormParameters.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.io.*,java.util.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>獲取所有表單資料</title>
</head>
<body>
<div style="margin: auto; width: 80%;">
<h2>獲取所有表單資料</h2>
<table width="100%" border="1" align="center">
<tr bgcolor="#949494">
<th>Param Name</th>
<th>Param Value(s)</th>
</tr>
<%
Enumeration paramNames = request.getParameterNames();
while (paramNames.hasMoreElements()) {
String paramName = (String) paramNames.nextElement();
out.print("<tr><td>" + paramName + "</td>\n");
String paramValue = request.getParameter(paramName);
out.println("<td> " + paramValue + "</td></tr>\n");
}
%>
</table>
</div>
</body>
</html>
部署執行以上專案,然後開啟瀏覽器存取URL: http://localhost:8080/FormProcessing/allFormParameters.html ,看到結果如下 -
選擇對應選項然後提交,上述程式將產生以下結果 -