gpt4 book ai didi

java - 使用 Java Stream 多次处理结果

转载 作者:行者123 更新时间:2023-12-02 01:33:30 25 4
gpt4 key购买 nike

如何将以下代码中的for-loop部分转换为Java Stream?

    Map<String, String> attributes = new HashMap() {{
put("header", "Hello, world!");
put("font", "Courier New");
put("fontSize", "14px");
put("color", "#0000ff");
put("content", "hello, world" +
"");
}};
Path templatePath = Paths.get("C:/workspace/spring-boot-demos/something.tpl");
List<String> lines = Files.readAllLines(templatePath).stream()
.filter(Objects::nonNull)
.map(line -> {
String parsedLine = "";
for (int i = 0; i < attributes.size(); i++) {
if (parsedLine.equals("")) parsedLine = this.parse(attributes, line);
else parsedLine = this.parse(attributes, parsedLine);
}

return parsedLine;
})
.collect(Collectors.toList());
<小时/>
public String parse(Map<String, String> attributes, String line) {
return attributes.entrySet().stream()
.filter(attributeMap -> line.indexOf("{{" + attributeMap.getKey() + "}}") != -1)
.map(attributeMap -> {
String attributeKey = attributeMap.getKey();
String attributeValue = attributeMap.getValue();
String newLine = line.replace("{{" + attributeKey + "}}", attributeValue);
return newLine;
})
.findFirst().orElse(line);
}

我发现很难以 Java 8 Stream 方式实现它,因此我被迫使用旧的 for-loop 构造。其背后的原因是,对于每一行字符串,可能有一个或多个占位符(使用 {{}} 分隔符)。我有要替换它们的值的列表(attributesHashMap)。我想确保在 Stream 循环离开每一行之前,所有占位符都必须替换为 Map 中的值。如果不这样做,则只会替换第一个占位符。

谢谢。

更新:这是 something.tpl 文件的内容:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>HTML Generator</title>
<style>
body {
font-family: "{{font}}";
font-size: {{fontSize}};
color: {{color}};
}
</style>
</head>
<body>
<header>{{header}}</header> {{content}}
<main>{{content}}</main>
<h1>{{header}}</h1>
</body>
</html>

最佳答案

所以你想替换给定列表中的每个标记?

这是我使用流的方法:

  1. 遍历行
  2. 每行仅解析一次
  3. 解析迭代属性,并替换当前属性

String[] pLine 可能是您丢失的...

package so20190412;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

public class Snippet {

public Snippet() {
}

public static void main(String[] args) {

Map<String, String> attributes = new HashMap<String, String> () {{
put("john", "doe");
put("bruce", "wayne");
}};
List<String> lines = Arrays.asList("My name is {{john}}, not {{bruce}}.", "Hello, {{john}}!", "How are you doing?");

new Snippet().replaceAll(attributes, lines).forEach(System.out::println);

}

public List<String> replaceAll(Map<String, String> attributes, List<String> lines) {
return lines.stream().map(l -> parse(attributes, l)).collect(Collectors.toList());
}

public String parse(Map<String, String> attributes, String line) {
String[] pLine = {line};
attributes.entrySet().stream()
.forEach(attr -> {
String attributeKey = attr.getKey();
String attributeValue = attr.getValue();
String newLine = pLine[0].replace("{{" + attributeKey + "}}", attributeValue);
pLine[0] = newLine;
});
return pLine[0];
}
}

如果您不明白某些部分,请随时询问。

呵呵!

关于java - 使用 Java Stream 多次处理结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55645812/

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