Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 int 字段,我想在 jsf 页面中显示其最后 4 个数字,请告知如何完成。
您可以为此使用模运算,EL中也支持使用模运算符。%
%
<p>Last 4 numbers: #{bean.number % 10000}</p>
如果您需要数字的最后四位,请使用模运算符:
int someInteger = 23421984; int last4digits = someInteger % 10000; // last4digits = 1948;