代码仅将文本文件的一行保存到数组中
Posted
技术标签:
【中文标题】代码仅将文本文件的一行保存到数组中【英文标题】:Code is only saving one line of a text file to the array 【发布时间】:2012-12-05 13:07:33 【问题描述】:我生成的代码旨在提供逐行读取文本文件的功能,并将每一行保存到一个数组中。它似乎正确地读取了每一行但是当我使用 printProps() 方法时它只显示一个......
代码只是将文本文件的一行保存到数组中,我的代码有什么问题?
/*reading in each line of text from text file and passing it to the processProperty() method.*/
Public void readProperties(String filename)
try
BufferedReader reader = new BufferedReader(new FileReader(filename));
int i = 0;
String line;
line = reader.readLine();
while (line != null && !line.equals(""))
i++;
processProperty(line);
line = reader.readLine();
System.out.println("" + i + " properties read");
catch (Exception e)
System.err.println(e.getMessage());
e.printStackTrace();
/*Breaks up the line of text in order to save the value to an array (at this point it only saves one line to the array). org.newProp(newProp) passes the new property to the Organize class where it saves it to an array.
public void processProperty(String line)
org = new Organize();
int id = nextPropertyID;
nextPropertyID++;
String[] parts = line.split(":");
int propNo = Integer.parseInt(parts[0]);
String postcode = parts[1];
String type = parts[2];
int bedrooms = Integer.parseInt(parts[3]);
int year = Integer.parseInt(parts[4]);
int rental = Integer.parseInt(parts[5]);
Landlord landlord = theLandlord;
Tenant tenant = null;
org.propUniqueCheck(id);
propNoCheck(propNo, postcode);
postcodeCheck(postcode,propNo);
typeCheck(postcode, propNo, type);
bedroomsCheck(bedrooms, postcode, propNo);
yearCheck(propNo, postcode, year);
System.out.println("Creating property " + id);
Property newProp = new Property(id, propNo, postcode, type, bedrooms, year,
rental, landlord, tenant);
org.newProp(newProp);
org.printProps();
/*From here down it is the code to save the value to the array*/
public Organize()
props = new ArrayList<Property>();
PTs = new ArrayList<PotentialTenant>();
waitingList = new LinkedList<String>();
//myList.add(new prop(Property.toString()));
public void newProp(Property p)
props.add(p);
我一直在我的研讨会上积极寻求有关此问题的帮助,但我似乎找不到解决方案,非常感谢任何建议!
【问题讨论】:
printProps 方法在哪里? 没有 printProps 方法我们帮不了你 【参考方案1】:在 processProperty 中,您正在实例化一个新的 Organize
对象。因此,每个属性(您为每一行创建)都以不同的 ArrayList(作为第一个元素)结束。
一种解决方案是在开始循环之前实例化一个 Organize
对象,然后将其作为参数传递给您的 processProperty 方法。
【讨论】:
【参考方案2】:当你的文本文件中的一行是一个空字符串时,你的 while 循环将会中断。
这是实现循环的正确方法:
String line = "";
while ((line = reader.readLine()) != null)
// your code here
【讨论】:
以上是关于代码仅将文本文件的一行保存到数组中的主要内容,如果未能解决你的问题,请参考以下文章