我有一行lacs的文本文件,单行的格式如下:
a | b | c(may contain url) | d(may contain url)
我想从最后一个字段中提取完整的文本,即行中的d
。
一旦我使用BufferedReader读取了这一行,我该怎么做呢。
答案 0 :(得分:3)
一种可能的方法如下:
package eu.webfarmr.stackoverflow;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* The goal of this class is to read lines from a text file which contain
* vertical bars and extract the fields separated by these tabs
*
* @author djob
*
*/
public class FileLACSReader {
private final static String SEPARATOR = "\\|";
/**
*
* @param args
*/
public static void main(String args[]) throws Exception{
List<String> lines = readContents("etc/sampleInput.txt");
for (String input : lines) {
String[] splitContent = input.split(SEPARATOR);
for (String field : splitContent) {
System.out.println(field);
}
}
}
public static List<String> readContents(String file)
throws FileNotFoundException {
List<String> textLines = new ArrayList<String>();
FileInputStream stream = new FileInputStream(new File(file));
Scanner scanner = new Scanner(stream);
try {
while (scanner.hasNextLine()) {
textLines.add(scanner.nextLine());
}
} finally {
scanner.close();
}
return textLines;
}
}
我希望这会有所帮助。
答案 1 :(得分:1)
您可以使用String.split方法:
String line = "a | b | c(may contain url) | d(may contain url)";
String[] parts = line.split("\\|");
String lastPart = parts[parts.length - 1];
System.out.println(lastPart);
答案 2 :(得分:1)
lins.substring(line.lastIndexOf(x));
line.lastIndexOf(x)将返回最后找到的x符号的索引(在这种情况下x是一个制表符(\ t))并且你可以从该索引获取您的行的子字符串。
如果您的最后一个字段也包含该符号,则应使用正则表达式。
答案 3 :(得分:0)
您可以将从文件中读取的文本存储到String
中,而不是将其存储:
String str = "a | b | c(may contain url) | d(may contain url)";
int x = str.lastIndexOf("|");
String str1 = str.substring(x+2);
System.out.println(str1);