JLabel text lost symbol '&' if it bind text resource in .form view
已回答
The actual value of 'foo' in the bundle is 'A & B'.
If I bind it to a JLable in the .fome view, eventually the label text will be 'A B', the symbol '&' lost: 
But if I bind it by using lable.setText(ResouceBundle.getBundle("myBundle").getString("foo")) in java, the label will display 'A & B' correctly.
I tried to use unicode \u0026 replace &, or using '<html>A & B</html>' , none of them works.
请先登录再写评论。
Hi,
Please use double ampersand:
&&to escape it.