如何从jsp servlet中的应用程序上下文中检索值

发布于 2024-12-10 15:40:06 字数 115 浏览 0 评论 0原文

我必须根据常用的值在下拉列表中显示值 那是

多勒 磅 欧元 它应该根据用户最常使用的内容来填充。

例子 如果使用欧元的用户数量较多 它应该在 drop doum 列表中的第一个

I have to display the Values in drop down list based on popularty used one
that is

Doller
Pound
Euro
it should be populated based on which is the one is mostly used by user .

Example
if Euro is more number of user is used
it should be in first in the drop doum list

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

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

发布评论

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

评论(1

落花浅忆 2024-12-17 15:40:06

为此,您可以在会话中存储每个变量(美元、英镑和欧元)的计数。

当用户选择 Dollar 时,您将在接收 servlet 中执行此操作:

Integer oldValue = (Integer) request.getSession().getAttribute("Dollar");
request.getSession().setAttribute("Dollar", new Integer(oldValue.intValue()++)); // Add one

从 JSP 获取值的最简单方法(在显示下拉列表之前)如下所示:

Integer dollarCount = (Integer) request.getSession().getAttribute("Dollar");

然后比较 DollarCount、poundCount 等的值,以决定命令。

希望这有帮助。

To do this you could store the count of each variable (Dollar, Pound and Euro) in the session.

When a user selects Dollar, you'd do this in your receiving servlet:

Integer oldValue = (Integer) request.getSession().getAttribute("Dollar");
request.getSession().setAttribute("Dollar", new Integer(oldValue.intValue()++)); // Add one

Simplest way to get the values from your JSP (before you display the dropdown) is like so:

Integer dollarCount = (Integer) request.getSession().getAttribute("Dollar");

Then compare the values for dollarCount, poundCount, etc, to decide the order.

Hope this helps.

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