编写一个能够从.txt文件中读取异构功能的代码时遇到了一些困难。 这是一个示例文件:
size = 1.523763e-13 Type = aBc,KCd,EIf
我需要找到这些功能,然后将它们放在netbeans上的Jlist中。
要查找大小变量我已经考虑过使用BufferedReader类,但我不知道接下来该做什么!
有任何帮助吗? 我的代码到目前为止:
public String findSize() {
String spec = "";
try {
BufferedReader reader = new BufferedReader(new FileReader("sample.txt"));
String line = reader.readLine();
while(line!=null) {
if (line.contains("size")) {
for(int i = line.indexOf("size")+1, i = line.length(), i++)
spec +=...;
答案 0 :(得分:3)
您可以通过分割通过BufferedReader
或Scanner
阅读的字符串轻松完成此操作。
在下面的示例中,我使用了Scanner
并正在阅读System.in
中的行。您可以替换它以读取源文件中的行。
以下是代码段:
public static void main (String[] args)
{
Scanner in = new Scanner(System.in);
List<String> typeString;
while(in.hasNext()) {
String[] str = in.nextLine().split("=");
System.out.println("Size: " + str[1].split(" ")[0] + " Type: " + str[2]);
typeString = new ArrayList<>(Arrays.asList(str[2].split(", ")));
}
}
请注意,这仅用于演示目的。您可以拆分字符串并使用子字符串进行播放,并以任意方式存储它们。
输入:
size=1.523763e-13 Type=aBc, KCd, EIf
输出:
Size: 1.523763e-13 Type: aBc, KCd, EIf
typeString --> {aBc, KCd, EIf}