将指定格式的文件读入ArrayList
我有具有以下特定格式的文件:
0 2 4 0 1 A 0 5 B 1 1 A 1 3 B 2 6 A 2 4 B 3 6 A 3 4 B 4 6 A 4 4 B 5 1 A 5 5 B 6 6 A 6 2 B
- 第 1 行 = 开始状态
- 第 2 行 = 接受状态
- 第 3 行 - n = 转换表
- 第 1 行 = 第 2 行中的状态
- = 状态输出
- A,B = 符号
我的 FileReader
在Java中将这些文件读入5个不同的ArrayList(开始状态、最终状态、状态输入、状态输出和符号)?
I have file with this specific format:
0 2 4 0 1 A 0 5 B 1 1 A 1 3 B 2 6 A 2 4 B 3 6 A 3 4 B 4 6 A 4 4 B 5 1 A 5 5 B 6 6 A 6 2 B
- line 1 = start state
- line 2 = accept state
- line 3 - n = transition table
- 1st row = state in
- 2nd row = state out
- A,B = symbol
How can my FileReader
in Java read these file into 5 different ArrayList
s (start state, final state, state in, state out and symbol)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好在此处使用 扫描仪 :
It's best to use a Scanner here:
您可以使用 Scanner 类来读取文件(nextLine () 强烈推荐)。由于您知道所需项目的位置,因此可以使用 split 方法来解析您喜欢的 ArrayList 中的输入字符串。
You can use the Scanner class to read the file (nextLine() is highly recommended). Since you know the positions of the items you need, you can then use the split method to parse the input string in what ever ArrayList you like.
看一下 StringTokenizer,使用 < code>ArrayLists 来构建您的列表。
Have a look at the StringTokenizer, use
ArrayList
s to build up your lists.