我可以在字符串上显式调用 EL (java)
我正在寻找一种方法来获取如下字符串: “请拿走这个${date.object}。”
以及一个具有键“object”
并像 EL 一样进行替换的字典。
即如果 "object"=>"bag"
那么我想获取字符串 "pleas take this bag."
我知道我可以使用显式字符串替换来做到这一点,但是正在寻找一种方法来利用 EL 使用的相同引擎。
I am looking for a way to take a string like:"pleas take this ${date.object}."
and a dictionary that has the key "object"
and replacing as EL does.
i.e. if "object"=>"bag"
then I want to get the string "pleas take this bag."
I know I can do this using explicit string replacement but was looking for a way to utilize the same engine used by EL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MessageFormat 做了类似的事情。也许你可以用这个?
例子:
MessageFormat does something similuar. May be you can use this?
Example: