从文件读取多行到单个字符串

时间:2018-10-12 10:49:24

标签: java bufferedreader filereader

我有一个文件,其中各行具有特定的前缀。在某些情况下,某些数据会以多行显示,例如在此文件示例中:

Num: 10101
Name: File_8
Description: qwertz qwertz
qwertz qwertz ztrewq
Quantity: 2

未定义属性顺序(数字,名称,描述,数量)。我使用以下代码从文件读取数据并存储到数组。

BufferedReader abc = new BufferedReader(new FileReader(file));
    while ((strLine = abc.readLine()) != null) {
        if(strLine.startsWith("Name:")){
        data[0] = strLine.substring(strLine.indexOf(" ")+1);
        data[0].trim();
       }
    }

前缀之间的字符串应存储在字符串中。

3 个答案:

答案 0 :(得分:1)

使用java.util.Scanner

要捕获映射:

String line, key = null, value = null;
while(scanner.hasNextLine()) {
    line = scanner.nextLine();
    if (line.contains(":")) {
        if (key != null) {
            values.put(key, value.trim());
        }
        int indexOfColon = line.indexOf(":");
        key = line.substring(0, indexOfColon);
        value = line.substring(indexOfColon + 1);
    } else {
        value += " " + line;
    }
}
values.put(key, value.trim());

for (Map.Entry<String, String>  mapEntry: values.entrySet()) {
    System.out.println(mapEntry.getKey() + " -> '" + mapEntry.getValue() + "'");
}

打印:

Description -> 'qwertz qwertz qwertz qwertz ztrewq'
Num -> '10101'
Quantity -> '2'
Name -> 'File_8'

答案 1 :(得分:0)

  

从文件读取多行到单个字符串

如果您将内容读入数组,则可以使用join:

String.join(delimiter, elements);

例如带有定界符,和一个数组:

String str = String.join(",", new String[]{"1st line", "2nd line", "3rd line"});

产生输出: 1st line,2nd line,3rd line


或直接读取字符串:

// assume we have a function
byte[] encoded = Files.readAllBytes(Paths.get(path));
return new String(encoded, encoding);

答案 2 :(得分:0)

好,那么传递给data [0]的所有内容都应串联成字符串?为什么不像这样使用StringBuilder类?

StringBuilder stringBuilder = new StringBuilder();
BufferedReader abc = new BufferedReader(new FileReader(file));
    while ((strLine = abc.readLine()) != null) {
        if(strLine.startsWith("Name:")){
        data[0] = strLine.substring(strLine.indexOf(" ")+1);
        data[0].trim();
        stringBuilder.append(data[0]);
       }
    }