java-搜索.txt文件以获取值列表

时间:2017-07-13 15:32:59

标签: java

我对Java很新,我正在尝试解决一些我知道应该可行的事情,但我无法解决如何实现它的问题。

我已经成功打开/导入了一个文本文件(例如下面的例子),但现在需要扫描整个文档中的Source =标签;将所有唯一值返回到将在另一个方法中使用的列表中。因此,对于此示例,我需要一个(Net,Local,Remote)列表。

有谁能建议如何实现这一目标?

!4542424
type="Home"Source=""Name="Jim"
information about first record
type="Away"Source="Net"Name="Sue"
information about second record
type="Work"Source="Local"Name="Ted"
information about third record
type="Work"Source=""Name="Mark"
information about fourth record
type="Home""Source="Net"Name="Josh"
information about fifth record
type="Home"Source="Remote"Name="Joe"
information about sixth record

1 个答案:

答案 0 :(得分:0)

知道你真正尝试过的事情真是太好了。但是,无论如何要帮助您朝着正确的方向前进,请尝试阅读BufferedReader exampleStringTokenizer example