4

我正在开发一个新应用程序,我需要创建一个带有查找的消息接口,使用键来查找值(如 ConstantsWithLookup,但能够接收参数)。我一直在研究 Dictionary 类的功能,但它缺少通过参数自定义消息。

使用 ConstantsWithLookup 我可以进行以下操作:

myConstantsWithLookupInterface.getString("key");

并得到类似的东西:

Field must be filled with numbers

但我需要这样做:

myMessagesWithLookupInterface.getString("key", "param1", "param2",...);

并得到类似的东西:

Field _param1_ must be filled with numbers greater than _param2_

我不知道该怎么做。

4

1 回答 1

1

使用GWT 正则表达式

//fields in your class
RegEx pattern1 = RegEx.compile("_param1_");
RegEx pattern2 = RegEx.compile("_param2_");

public String getString(String key, String replace1, String replace2){
    // your original getString() method
    String content = getString(key);
    content = pattern1.replace(content,replace1);
    content = pattern2.replace(content,replace2);
    return content;
}

如果您的数据包含Field _param1_ must be filled with numbers greater than _param2_,那么这将替换_param1_为 string 的内容replace1

于 2011-06-08T22:28:10.230 回答