gpt4 book ai didi

具有查找支持的 GWT 消息接口(interface)

转载 作者:行者123 更新时间:2023-12-01 05:39:52 25 4
gpt4 key购买 nike

我正在开发一个新应用程序,我需要创建一个带有查找的消息接口(interface),使用键来查找值(如 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_

我不知道该怎么做。

最佳答案

使用GWT regular expressions :

//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_字符串的内容 replace1 .

关于具有查找支持的 GWT 消息接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6281183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com