快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
r 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   ... }

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

时间:2011-04-09 IBM Jeff Wilson

Cookie

在 ASP 中,cookie 的处理使用了 REQUEST 和 RESPONSE 对象的 Cookies 属性。 RESPONSE 对象用于创建 cookie,而 REQUEST 对象用于检索 cookie 值。为方面起见,在代 码中使用了多值 cookie,尽管多值 cookie 被编码到 HTTP 响应表头时,但是可以转换为单 值 cookie。

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

清单 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 eachCookie = myCookies[i];     // Do something w/each cookie     ....   } }

结束语

感谢您使用这个关于 J2EE 开发的入门教程。我们已尽力提供足够的信息使您走上 J2EE 之路,并且使您的开放标准编程之旅尽可能的顺利。我们鼓励您利用本文的 参考资料小节以 继续接受 J2EE 教育。祝旅途愉快。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号