如何在向下舍入为整数的 af:inputText 中显示双精度数?

How do I display a double in an af:inputText rounded down to an integer?

我有一个显示双精度值的 af:inputText。例如:17555.8

<af:inputText value="#{bindings.regnum.inputValue}"
     disabled="true"
     simple="true" id="it4"/>

我想以整数形式查看此数据:17555。我该如何实现?

尝试

<af:inputText value="#{bindings.regnum.inputValue}" disabled="true" simple="true" id="it4">
<af:convertNumber type="number" messageDetailConvertNumber="#"/>
</af:inputText>

更多关于 convertNumber here