使用可选的entires解析分隔的输入

时间:2015-09-01 20:53:55

标签: java parsing tab-delimited

使用可选条目解析文件的最佳方法是什么?

即。我输入了表格

item1,item2,[item3],[item4],item5,item6

其中item3和item4都是可选条目。我目前正在沿着分隔符拆分并根据给定的条目数填充对象。是否有更好的方法来实现这一目标?

1 个答案:

答案 0 :(得分:1)

Here are two options: 1. Rearrange the data so that the optional items are at the end of the file. 2. Pass delimiters for the missing data. This is preferable, as it would allow you to maintain the shape of the data.