如何在资源包中处理角色明星
如果我们使用 "*"
作为资源包的一部分,则该字符会在消息格式化过程中被删除 (java.util.ResourceBundle)。我们该如何摆脱这个角色呢?
If we use "*"
as part of the resource bundle, the character gets removed during the message formatting process (java.util.ResourceBundle). How are we supposed to escape this character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 \* 或 Unicode 转义形式 - \u002A
编辑:似乎要在此处的答案中显示 \*,您需要键入 \\*。
Try using \* or the Unicode escapes form - \u002A
EDIT: Seems that to display \* in answer here you need to type \\*.