开发者

How the session cookie is maintained by browser

开发者 https://www.devze.com 2023-02-26 18:49 出处:网络
Hey all I was trying to create a java program which will remain logged in on server whenever i browse on website no authentication will be required even if i run the program later on i.e. my program s

Hey all I was trying to create a java program which will remain logged in on server whenever i browse on website no authentication will be required even if i run the program later on i.e. my program should store some cookie file on client side and also tell the browser that this session shou开发者_JAVA百科ld lasts for quite a long time. And whenever i run the program this should send the cookie details, that this is recognized and the user is logged on, to the server.

So how this should be done using HTTP protocol.

Thanks. :)


The browser (client) stores a session cookie containing a key-value pair. The key is usually JSESSIONID, and the value is a unique identifier. It is received by the client as a response of his request to the server, which initiates the session.

Whenever a request is made to the server, the browser sends that key-value pair in a special http header ("Cookie"). The server then reads that header, obtains the identifier, and finds the corresponding session.


Why don't you guys use Google before asking?

See the following:

  • HttpURLConnection class
  • HTTP cookies description
  • How to use HTTP Cookies in Java
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号