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.
有人知道如何String使用 jstl 标签使用掩码进行格式化吗?假设您想在列表中显示机密信用卡号,而您只想显示前 4 位数字,否则将被 * 掩盖,例如:
String
1234-****-****-****
我不认为有任何开箱即用的东西可以做到这一点。命名空间标签是关于格式化数字和日期以及 i18n的fmt东西,但与字符串格式化无关。如果您不想在表示层中使用 scriptlet 或函数调用执行此操作,您可能需要考虑为混淆的 CC 编号添加另一个模型属性,这样您就可以在 Java 中进行格式化,这样会更容易。
fmt