为什么我的petArray为空? myArray数组很好,但idk为什么petArray为null
这是我的.txt文件:
112|C|Fluffy|4/1/2011|Tabby|Gray|M|Y|N|N
332|D|Phydeaux|6/3/2009|Collie|White/Tan|M|N|N|N
237|C|Snagglepuss|5/13/2010|Siamese|Sable|M|Y|Y|N
165|C|Sylvester|1/12/2008|Tuxedo|Black/White|F|N|N|N
113|C|Fluffy|499/1/2011|Tabby|Gray|M|Y|N|N
333|X|Phydeaux|6/3/2009|Collie|White/Tan|M|N|N|N
238|C|Snagglepuss|5/13/2010|Siamese|Sable|M|Y|Y|N
166|C|Sylvester|1/12/2008|Tuxedo|Black/White|F|N|G|N
114|C|Fluffy|4/1/2011|Tabby|Gray|M|Y|N|N
334|D|12/4/2005|Phydeaux|Collie|White/Tan|M|N|N|N
239|C|Snagglepuss|5/13/2010|Siamese|Sable|M|Y|Y|N
167|P|Sylvester|1/12/2008|Tuxedo|Black/White|F|N|E|N
115|C|Fluffy|4/1/2011|Tabby|Gray|M|Y|
335|D|Phydeaux|6/3/2009|Collie|White/Tan|M|N|N|N
240|C|Snagglepuss|5/13/2010|Siamese|Sable|M|Y|Y|N
168|C|Sylvester|1/12/20085|Tuxedo|Black/White|F|N|N|N
PetGUI.java:
import java.awt.BorderLayout;
import java.awt.Component;
import java.util.*;
import java.awt.TextArea;
import java.util.LinkedList;
import javax.swing.*;
import javax.swing.JFrame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/*
* Makes a new JFrame thats makes two textareas, fills in the textareas
* from the array and linkedlist.
*/
public class PetGUI extends JFrame{
static int number;
static String[] animalArray;
static TextArea north;
static TextArea south;
public PetGUI(TextFileInput tfi){
int lines = 0;
TextFileInput tfil = new TextFileInput("project4.txt");
String rlines = tfil.readLine();
while(rlines != null){
lines++;
rlines = tfil.readLine();
}
tfil.close();
String [] myArray = new String[100];
number = lines;
animalArray = myArray;
this.setSize(400,400);
this.setLocation(200, 200);
this.setTitle("Adoptable Pets");
createFileMenu();
createEditMenu();
TextArea north = new TextArea(9,20);
TextArea south = new TextArea(9,20);
this.getContentPane().add(north,BorderLayout.NORTH);
this.getContentPane().add(south,BorderLayout.SOUTH);
north.setEditable(false);
south.setEditable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
Cat c;
Dogs d;
AdoptablePet [] petArray = new AdoptablePet[lines];
for(int i = 0; i < lines; i++){
myArray[i] = tfi.readLine();;
}
tfi.close();
for(int i = 0; i < lines; i++){
if(myArray[i].charAt(4) == 'C'){
String[] r = myArray[i].split("\\|");
if(r.length != 9){
try{
throw new IllegalPetInput("Not the right length of input");
}
catch(IllegalPetInput a){
}
}
else
try{
c = new Cat(Integer.parseInt(r[0]),r[1],r[2],r[3],r[4],r[5],r[6],r[7],r[8],Boolean.parseBoolean(r[9]));
petArray[i] = c;
}
catch(AdoptablePetException a){
System.out.println("Wrong information for the cat.");
}
}
if(myArray[i].charAt(4) == 'D'){
String[] r = myArray[i].split("\\|");
if(r.length != 9){
try{
throw new IllegalPetInput("Not the right length of input");
}
catch(IllegalPetInput a){
}
}
else
try{
d = new Dogs(Integer.parseInt(r[0]),r[1],r[2],r[3],r[4],r[5],r[6],r[7],r[8],Boolean.parseBoolean(r[9]));
petArray[i] = d;
}
catch(AdoptablePetException a){
System.out.println("Wrong information for the cat.");
}
}
}
LinkedList l = new LinkedList();
for(int i = 0; i < lines; i++)
System.out.println(myArray[i]);
System.out.println();
for(int i = 0; i < lines; i++)
System.out.println(petArray[i]);
//Appends the north side of the texarea with all of the lines
for(int i = 0; i < l.size(); i++)
north.append((String) l.get(i));
}
答案 0 :(得分:2)
我在你的数据中计算了10个字段,你的检查说应该只有9个,然后抛出一个被抓住并扔掉的异常。
if(r.length != 9)
{
try
{
throw new IllegalPetInput("Not the right length of input");
}
catch(IllegalPetInput a)
{
// you're throwing this away! bad form!
}
}
稍后,你会看到10个字段的数据!
c = new Cat(Integer.parseInt(r[0]),r[1],r[2],r[3],
r[4],r[5],r[6],r[7],r[8],
Boolean.parseBoolean(r[9])); // field number 10!
您还在计算行数后关闭输入流:
TextFileInput tfil = new TextFileInput("project4.txt");
String rlines = tfil.readLine();
while(rlines != null){
lines++;
rlines = tfil.readLine();
}
tfil.close(); // stream closed! any reads after this should hypothetically have failed!
你永远不会重新打开它,所以别的什么都不行。
摆脱数组并使用ArrayList,不要读取文件一次,看看你将提前有多少行。
答案 1 :(得分:0)
我怀疑问题是,你已经读过文件计算行数。再次将它们存储在一个数组中,您正在阅读它们。但是当你读取行数时,光标已经在文件的末尾。现在,当你这次读取字符串时,readline()
返回null,这可能是你的数组为空的原因。
答案 2 :(得分:0)
因为r.length总是10而不是9,就像你的if语句一样。你说
if(r.length != 9){
try{
throw new IllegalPetInput("Not the right length of input");
}
catch(IllegalPetInput a){
}
因此,如果if语句的计算结果为true,则抛出异常然后立即捕获(为什么要这样做?)