在 JSF 中格式化非小数的双精度数

发布于 2024-10-25 21:39:03 字数 542 浏览 5 评论 0原文

我有一个 inputText,它从用户那里获取一个值并绑定到一个双精度数。如果值为“5000”,后续页面将显示为“5000.0”。 是否有任何方法可以对其进行格式化,以便在用户输入非小数时,它不会显示小数?

示例:
用户输入“5000” 显示“5000”
用户输入“5000.1” 显示“5000.1”

<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
    <f:convertNumber pattern="###0"/>
</h:inputText>

我尝试使用下面的 f:convertNumber 标记,但收到此错误:

java.lang.ClassCastException: java.lang.Long 无法转换为 java.lang.Double

我不想更改任何 Java 代码。仅呈现双人。

I have an inputText that takes a value from the user and is bound to a double. If the value is "5000", subsequent pages will show it as "5000.0". Is there any way to format it such that if the user enters a non-fractional number, it won't show the decimal?

Examples:

User enters "5000"
Show "5000"

user enters "5000.1"
Show "5000.1"

<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
    <f:convertNumber pattern="###0"/>
</h:inputText>

I've tried using the f:convertNumber tag below but I get this error:

java.lang.ClassCastException:
java.lang.Long cannot be cast to
java.lang.Double

which I don't want to change any of the Java code. Only the presentation of the double.

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

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

发布评论

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

评论(2

审判长 2024-11-01 21:39:03

如果您找不到模式,您可以编写自己的 NumberConverter 扩展。我从未尝试过,但它的工作原理应该与此类似:

@FacesConverter(value="ExampleConverter")
public class ExampleConverter extends NumberConverter {

  String getAsString(FacesContext context, UIComponent component,Object value) {
    // call super.getAsString(...) and cut trailing .0
  }
}

以这种方式在 Facelet 中使用转换器:

<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
    <f:converter converterId="exampleConverter" />
</h:inputText>

If you don't find a pattern you could write your own extension of NumberConverter. I never tried it, but it should work similiar as this:

@FacesConverter(value="ExampleConverter")
public class ExampleConverter extends NumberConverter {

  String getAsString(FacesContext context, UIComponent component,Object value) {
    // call super.getAsString(...) and cut trailing .0
  }
}

Use the converter in the facelet this way:

<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
    <f:converter converterId="exampleConverter" />
</h:inputText>
画离情绘悲伤 2024-11-01 21:39:03

转换器只会转换数字以供进一步使用。如果您想在与用户交互时添加特定行为,请尝试使用 javascript“onkeyup”事件并使用提供的数据进行操作。表示是特定于用户的,因此应该位于服务器之外。

Converter will just convert the number for further usage. If you want to add specific behaviour while interacting with user, try and use javascript "onkeyup" event and manipulate with the data supplied. Presentation is user-specific and thus should be outside the server.

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