我在网络应用中使用i18n。从.properties中读取它。 一切都还好,但是当我正在阅读按钮的文本(type =“submit”)时,它只在第一个空格之前读取。
来自jsp文件的代码:
<input type="submit" value=<fmt:message key="button.ok" /> style="width:100"/>
来自.properties文件的代码:
button.ok=Sign in
但是,当我从属性读取文本到其他文本字段(而不是按钮)时 - 一切都很好。 对于前。
<fmt:message key="login.password" />
和 login.password =输入您的密码:
P.S。对不起我的英文:)
答案 0 :(得分:1)
像
一样阅读<input type="submit" value="<fmt:message key='button.ok'/>" style="width:100"/>