Java:如何用Map<String,String>填充文本中的占位符?



我正在使用一个代码,我想在其中用另一个字符串填充几个字符串的位置。这是我用来测试代码的示例文本。

String myStr = "Media file %s of size %s has been approved"

这就是我填补位置的方式。由于我希望使用多个位置持有人,所以我使用了Java Map&lt;>。

Map<String, String> propMap = new HashMap<String,String>();
propMap.put("file name","20mb");
String newNotification = createNotification(propMap);

我使用以下方法创建字符串。

public String createNotification(Map<String, String> properties){
    String message = ""; 
    message = String.format(myStr, properties);
    return message;
}

如何将两个"%s"替换为"文件名"one_answers" 20MB"?

这不是地图要做的。您添加的是一个条目"file name" -> "20 mb",基本上意味着属性"文件名"具有" 20 MB"。您要使用的是"维护物品元组"。

请注意,格式字符串具有固定量的占位符;您需要一个数据结构,该数据结构包含完全相同的项目;因此,本质上是数组或List

因此,您想要拥有的是

public String createNotification(String[] properties) {
    assert(properties.length == 2); // you might want to really check this, you will run into problems if it's false
    return String.format("file %s has size %s", properties);
}

如果要在地图中创建所有项目的通知,则需要做类似的事情:

Map<String,String> yourMap = //...
for (Entry<String,String> e : yourMap) {
    System.out.println(createNotification(e.getKey(), e.getValue()));
}

您对字符串#格式的方法是错误的。

它期望可变数量的对象将占位符替换为第二个参数,而不是地图。要将它们分组在一起,您可以使用数组或列表。

String format = "Media file %s of size %s has been approved";
Object[] args = {"file name", "20mb"};
String newNotification = String.format(format, args);

您可以简单地使用var-args进行此格式:

    String myStr = "Media file %s of size %s has been approved";
    String newNotification = createNotification(myStr, "file name", "20mb");
    System.out.println(newNotification);

通过createNotification方法通过var-args,这是代码:

public static String createNotification(String myStr, String... strings){
    String message = ""; 
    message=String.format(myStr, strings[0], strings[1]);
    return message;
}

我认为 %s是python的语法放置持有人,不能在Java环境中使用它;和您的方法createNotification()定义需要两个参数,不能只给出一个。

尝试多种方法后,最终找到了一个好的解决方案。地位持有人必须像这样[占位符]。

public String createNotification(){
    Pattern pattern = Pattern.compile("\[(.+?)\]");
    Matcher matcher = pattern.matcher(textTemplate);
    HashMap<String,String> replacementValues = new HashMap<String,String>();
    StringBuilder builder = new StringBuilder();
    int i = 0;
    while (matcher.find()) {
        String replacement = replacementValues.get(matcher.group(1));
        builder.append(textTemplate.substring(i, matcher.start()));
        if (replacement == null){ builder.append(matcher.group(0)); }      
        else { builder.append(replacement); }     
        i = matcher.end();
    }
    builder.append(textTemplate.substring(i, textTemplate.length()));
    return builder.toString()
}

相关内容

  • 没有找到相关文章

最新更新