Servlet JApplet:HttpSession

发布于 2024-10-13 00:36:36 字数 385 浏览 3 评论 0原文

这听起来是一个简单的问题,但我找不到好的信息。

我正在编写一个小型 JApplet,它将向服务器 servlet 发送一些信息,

我希望能够跟踪谁是谁,所以我想建立一个日志记录和会话系统。

我找到了一些有关 httpsession 的信息,但我永远找不到一个信息:

我是否必须在小程序中创建会话对象,或者当我在小程序端执行类似操作时是否有一个自动系统创建 httpsession

HttpURLConnection con = (HttpURLConnection) u.openConnection ();
con.setDoInput(true);
con.setRequestMethod("GET");
con.connect();

This sounds like a simple question but I can't find good information.

I'm writing a small JApplet that will be sending some info to a server servlet

I want to be able to track who is who so I want to put up a system of logging and and session.

I found some information about httpsession but I can never find one information:

Do I have to create a session object in my applet or is there an automatic system that creates the httpsession when I do something like this on the applet side

HttpURLConnection con = (HttpURLConnection) u.openConnection ();
con.setDoInput(true);
con.setRequestMethod("GET");
con.connect();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灵芸 2024-10-20 00:36:36

您需要在 servlet 中跟踪服务器上的会话。

从java小程序中,您需要在请求时在标头中维护cookie。

另请参见

You need to keep track of session at server in servlet.

and from java applet you need to maintain cookie in header while requesting.

Also See

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文