快速业务通道

走上开放之路: .NET开发人员的J2EE基础(下) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
to include another resource as part of the processing of this page --> <jsp:include page="anotherPage.jsp" flush="true"/>

清单 34 显示了这些导航方法在 servlet 中的一些例子。

清单 34. servlet 中的编程式导航

public void doGet(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {   ...    // Redirecting to another resource    response.sendRedirect("anotherResource.jsp");   ... } // This code snippet shows the use of a RequestDispatcher to forward to another resource public void doGet(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {   ...   // Get a RequestDispatcher instance   RequestDispatcher rd = getServletContext().getRequestDispatcher ("anotherResource.jsp");   // Forward the request   rd.forward(request, response);   ... } // This code snippet shows the use of a RequestDispatcher to include another resource public void doGet(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {   ...   // Get a RequestDispatcher instance   RequestDispatcher rd = getServletContext().getRequestDispatcher ("anotherResource.jsp");   // Forward the request   rd.include(request, response);   // Continue processing the request   ... }

走上开放之路: .NET开发人员的J2EE基础(下)(11)

时间:2011-04-09 IBM David Carew

Cookie

在 ASP.NET 中,cookie 的处理使用了 HttpRequest 和 HttpResponse 对象的 Cookies 属性。这个属性表示 HttpCookie 对象的一个集合,集合中的每个成员分别表示一个单独的 cookie。

在 J2EE 中,cookie 使用 Cookie 类来表示,并且可通过 HttpServletRequest 和 HttpServletResponse 接口来访问它们。现有的 cookie 使用 HttpServletRequest 接口来 访问,新的 cookie 使用 HttpServletResponse 接口来创建。

清单 35 演示了如何在 J2EE 应用程序中使用 cookie。你可以在 Java Servlet 或 JSP 页面的 scriptlet 中使用这些代码片断。

清单 35. 在 J2EE Web 应用程序使用 cookie

// Create a cookie using the HttpServletResponse interface // The first parameter of the constructor is the name of the cookie // and the second parameter is the cookie''s value Cookie myCookie = new Cookie("myCookie", "someValue"); // Set the age of the cookie - by default cookies will be stored in memory // by the browser and will be destroyed when the user closes the browser // The setMaxAge() methods takes an integer as its parameter which represents // the age in seconds. In this example we''re specifying an age of 24 hours for the cookie myCookie.setMaxAge(86400); // Add cookie to the response response.addCookie(myCookie); // Here''s an example of retrieving cookies from the HttpServletRequest interface // Note that the cookies are returned as an array of Cookie objects Cookies[] myCookies = request.getCookies(); // The getCookies method will return null if there are no cookies if (myCookies != null) {   for (int i = 0; i < myCookies.length; i++) {     Cookie ea

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号