作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Map<String, Object> baseMap = new HashMap<String, Object>();
baseMap.put("Name", "Raja");
Map<String, Object> address = new HashMap<String, Object>();
address.put("Street", "RAMA");
baseMap.put("Address", address);
StrSubstitutor strsub = new StrSubstitutor(baseMap);
String str = "This is ${Name} from ${Address.Street}";
System.out.println(strsub.replace(str));
输出为:
我是来自 ${Address.Street} 的 Raja
我需要的是:
这是 RAMA 的 Raja
我怎样才能得到这个?
最佳答案
您可能需要另一个 StrSubstitutor
实例来替换地址
:
StrSubstitutor strsub = new StrSubstitutor(baseMap);
StrSubstitutor baseSub = new StrSubstitutor(address);
String str = "This is ${Name} from ${Address.Street}";
System.out.println(baseSub.replace(strsub.replace(str)));
但我相信更好的解决方案是使用 sinlge baseMap
:
Map<String, Object> baseMap = new HashMap<String, Object>();
baseMap.put("Name", "Raja");
baseMap.put("Street", "RAMA");
StrSubstitutor strsub = new StrSubstitutor(baseMap);
String str = "This is ${Name} from ${Address.Street}";
System.out.println(strsub.replace(str));
关于java - 如何在java中使用StrSubstitutor进行嵌套Map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23608507/
我是一名优秀的程序员,十分优秀!