我想将值设置为message.properties
文件。
我已经在java中完成了它,如下所示:
Properties emailErrorMsgProp = new Properties();
emailErrorMsgProp.load(new FileInputStream("grails-app/i18n/messages.properties"));
emailErrorMsgProp.setProperty("ma_email_error",result.callStatusMsg.toString());
emailErrorMsgProp.store(new FileOutputStream("grails-app/i18n/messages.properties"), null);
我也想让它特定于语言。我有特定于语言的属性文件。
我想在 grails 服务中做同样的事情,但我该怎么做呢?