作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我公司有一个非常奇怪的文件。它是由很久以前的人编写的程序生成的。它包含一堆属性以及拥有这些属性的用户。它看起来像下面。我必须逐行读取此文件并将属性和用户分成两个列表。例如,在第一行中,所有 Prop 都应该在一个列表中,方括号内的用户应该在另一个列表中。用户数量一直在变化,这让我的任务变得复杂。有人可以建议我破解它吗?我从几个小时而不是它开裂了我的头。任何提示将不胜感激。
Properties,prop1,prop2,prop3,[user1,user2,user3,],prop4,prop5
Properties,prop1,prop2,prop3,[user1,user2,user3,user4,],prop4,prop5
Properties,prop1,prop2,prop3,[user1,],prop4,prop5
Properties,prop1,prop2,prop3,[user1,user2,],prop4,prop5
Properties,prop1,prop2,prop3,[user1,user2,user3,user4,user5,],prop4,prop5
最佳答案
我会编写一个带有状态机的简单解析器,其中 [
将您切换到读取用户,而 ]
将您切换到读取属性。
另一种方法是以两种方式拆分线。
String line;
while((line = bufferedReader.readLine()) != null) {
for(String parts: line.split("\\[")) {
String[] userProps = parts.split("\\)");
String users = userProps.length==1 ? "" : userProps[0];
String props = userProps[userProps.length-1];
// break up the individual users and props
}
}
关于java - 如何将文件读取到java列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9339950/
我是一名优秀的程序员,十分优秀!