如何从jsp中的会话变量中删除前导零

发布于 2024-10-13 18:49:59 字数 164 浏览 1 评论 0原文

我有一个会话变量 -${reData.totalCharge} 它可能具有类似于 000000033 的值。当我在 JSP 中显示该值时,我只需要显示 33 。你怎么做这个?它被定义为字符串,因为数据以字符形式存储在 DB2 数据库中。

i have a session variable -${reData.totalCharge} it may have values like 000000033. when I display the value in JSP I need only 33 to be displayed. how do you do this ? this is defined as string as the data is stored as charecter in DB2 database.

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

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

发布评论

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

评论(1

世界如花海般美丽 2024-10-20 18:49:59

Integer.parseInt(value) 可以工作。但在预处理代码中而不是在 JSP 中执行此操作。另外, 应该可以工作。

但最终 - 尝试在数据库中修复这个问题。您不应该将整数存储为字符串。

Integer.parseInt(value) would work. But do that in the preprocessing code, rather than in the JSP. Also, <fmt:formatNumber /> should work.

But ultimately - try fixing this in the database. You shouldn't be storing integers as strings.

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