1. 程式人生 > >java後臺如何根據表單中input的順序獲取value值

java後臺如何根據表單中input的順序獲取value值

後臺 character tchar java後臺 ava rac char etc str

如果java後臺準備用Servlet來實現,可以直接在doPost( )或者doGet( )中使用如下語句:
request.setCharacterEndoding("UTF-8");//為了保證form有中文時不會出現亂碼
String name= request.getParameter("name");
String value=request.getParameter("value");
/***********************************************************/
form中的實現:
<form name="form" method="post" action="url">
<input type="text" name="name" />
<input type="text" name="value" />
<input type="submit" name="submit" value="提交"/>

java後臺如何根據表單中input的順序獲取value值