GWT i18n Message Properties does not Display special Character like ß

后端 未结 2 2070
孤独总比滥情好
孤独总比滥情好 2021-01-24 08:39

I use GWT i18n Messages to translate messages:

@DefaultLocale(\"en\")
public interface Messages extends com.google.gwt.i18n.client.Messages {

    @DefaultMessag         


        
2条回答
  •  时光取名叫无心
    2021-01-24 08:49

    GWT is always UTF8. So the easiest way to solve your problem is, to set the encoding of your workspace to utf-8.

    Or select your Messages_de.properties, right mouse button and select properties. Use Resources to set the encoding of your property file to utf-8.

    enter image description here

提交回复
热议问题