如何逐个元素地读取java中的文件

时间:2013-10-07 18:46:40

标签: java file

我有一个结构为

的文件
#n aa bb cc

其中n是行中元素的数量,而aa是一个元素(它们之间总是有空格)。

所以我想知道有一种方法可以在某些行中读取n然后逐个元素。

2 个答案:

答案 0 :(得分:1)

这是一个解决方案:

Read the file in line at a time
Split the line by space
["#n", "aa", "bb", "cc"]
take the substring of the first element to exclude the # and parse an integer from it

答案 1 :(得分:0)

Java使用Regular Expressionsjava.util.regex.Pattern内置了对java.util.regex.Matcher的支持。这些是您需要的工具。