Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the servlet conversation technologies?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly talks about "what are the servlet conversation technologies". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "what are the servlet conversation skills"?

First, cookie session.

(1) create a Cookie

1. Create cookie

Cookie cookie=new Cookie ("name", "zhangsan"); / / Chinese is not allowed in cookie. If you need to put it in Chinese, you must encode it.

Cookie cookie=new Cookie ("name", java.net.URLEncoder.encode ("Zhang San", "utf-8"); / / Encoding

Java.net.URLDecoder.decode (cookie.getValue (), "utf-8") / / Decoding

two。 Set the lifecycle of cookie (seconds)

Cookie.setMaxAge (3600)

Cookie.setMaxAge (negative); / / the browser will expire when it is closed.

Cookie.setMaxAge (0); / / Delete this cookie

3. Write back the cookie information to the browser

Response.addCookie (cookie); / / this sentence is very important. Whenever you delete cookie.setMaxAge (0), you have to write back to the past.

(2) read Cookie

1. Read all cookie information

Cookie cookies [] = request.getCookie ()

two。 Benefit all the cookie

For (int iTuno Bandi)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report