jsp頁面之間通過servelt呼叫DAO方法,讓DAO回傳入的值,通過servlet調到轉入的頁面
阿新 • • 發佈:2019-02-17
2014.9.1開始接觸jsp
<pre name="code" class="plain"> person.jsp
<form action="aaa" method="post"> //這個aaa是在web.xml配置檔案中配置
<p> 姓名<input type="text" name="t1"> <input type="submit" value="提交"></p>
</form>
MySerVlet.jsp
protected void doPost(HttpServletRequest request, HttpServletResponse resp) throws ServletException, IOException { // 怎麼從servlet中的接受的name值 傳入到其他頁面響應的位置 request.setCharacterEncoding("utf-8");// 防止接受的頁面的值傳入java中會亂碼 String name1 = request.getParameter("t1");// 接受從person的值 Action a = new Action(); ArrayList<Student> list = a.qurey(name1);// 接受action中的查詢方法 request.setAttribute("list", list); //儲存從Action中查出來的Student集合 // 轉向 request.getRequestDispatcher("seek.jsp").forward(request, resp);然後再傳入seek.JSP }
seek.jsp
<% ArrayList<Student> list = (ArrayList<Student>)request.getAttribute("list"); for(Student aa:list){ %> <tr> <td><%=aa.getName()%></td> <td><%=aa.getSex() %></td> <td><%=aa.getAge() %></td> <td><%=aa.getAddres()%></td> </tr> <% } %>