使用Java Stream

时间:2019-04-12 06:36:43

标签: java for-loop java-8 java-stream

如何将以下代码中的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 个答案:

答案 0 :(得分:2)

所以您要替换给定列表中的每个令牌吗?

这是我如何使用流:

  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];
    }
}

请随时询问您是否不了解某些部分。

HTH!