Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/319.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/grails/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 如何处理arraylist异常?_Java_Arraylist_Actionlistener - Fatal编程技术网

Java 如何处理arraylist异常?

Java 如何处理arraylist异常?,java,arraylist,actionlistener,Java,Arraylist,Actionlistener,下面的代码应该从一个文件中读取学生及其成绩列表,相互比较,然后显示平均成绩最高的学生 public class CSDept implements Comparable{ private String studentName; private double java; private double dataStructure; private double algorithms; private int numStudents; public CSDept(){ } public CSD

下面的代码应该从一个文件中读取学生及其成绩列表,相互比较,然后显示平均成绩最高的学生

public class CSDept implements Comparable{
private String studentName;
private double java;
private double dataStructure;
private double algorithms;
private int numStudents;


public CSDept(){

}

public CSDept(String studentName,double java,double dataStructure,double algorithms){
    this.studentName=studentName;
    this.java=java;
    this.dataStructure=dataStructure;
    this.algorithms=algorithms;
}

public String getStudentName() {
    return studentName;
}

public void setStudentName(String studentName) {
    this.studentName = studentName;
}

public String getJava() {
    return java+" ";
}

public void setJava(double java) {
    this.java = java;
}

public String getDataStructure() {
    return dataStructure+" ";
}

public void setDataStructure(double dataStructure) {
    this.dataStructure = dataStructure;
}

public String getAlgorithms() {
    return algorithms+" ";
}

public void setAlgorithms(double algorithms) {
    this.algorithms = algorithms;
}


public int getNumStudents() {
    return numStudents;
}

public double getAvg(){
    return (java+algorithms+dataStructure)/3;
}



public int compareTo(Object student) {
    if(this.getAvg()>((CSDept)student).getAvg()) return 1;
    if (this.getAvg()<((CSDept)student).getAvg()) return -1;
    return 0;
}

public String toString(){
    return studentName+":\n"+"\t"+"Java:  "+java+"\t"+"Data Structure :  "+dataStructure+"\t"+"Algorithms:  "+algorithms+"\n";
}}

    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    import java.util.*;

    import javax.swing.*;
    import javax.swing.border.TitledBorder;


public class CSDeptFrame extends JFrame{
private JPanel pnlInput=new JPanel(new GridLayout(4,2));
private JPanel pnlOutput=new JPanel(new BorderLayout());
private JPanel pnlFinal=new JPanel(new GridLayout(1,2));

private TitledBorder brdInput=new TitledBorder("Marks");
private TitledBorder brdOutput=new TitledBorder("First Student");

private JLabel lblName=new JLabel("Student Name");
private JLabel lblJava=new JLabel("Java");
private JLabel lblDataStructure=new JLabel("Data Structure");
private JLabel lblAlgorithm=new JLabel("Algorithm");
static JLabel lblFirst=new JLabel("The First Student is :");

static JTextField txtName=new JTextField(20);
static JTextField txtJava=new JTextField(20);
static JTextField txtDataStructure=new JTextField(20);
static JTextField txtAlgorithm=new JTextField(20);

static JButton btnFirst=new JButton("Who is The First Student?");

public CSDeptFrame(String title){
    super(title);
    pnlInput.setBorder(brdInput);
    pnlInput.add(lblName);
    pnlInput.add(txtName);
    pnlInput.add(lblJava);
    pnlInput.add(txtJava);
    pnlInput.add(lblDataStructure);
    pnlInput.add(txtDataStructure);
    pnlInput.add(lblAlgorithm);
    pnlInput.add(txtAlgorithm);

    pnlOutput.setBorder(brdOutput);
    pnlOutput.add(btnFirst,BorderLayout.NORTH);
    pnlOutput.add(lblFirst,BorderLayout.SOUTH);

    pnlFinal.add(pnlInput);
    pnlFinal.add(pnlOutput);

    setLayout(new BorderLayout());
    add(pnlFinal);}

public static void main(String[] args){
    CSDeptFrame frame=new CSDeptFrame("CS DEPT");
    frame.setSize(450,200);
    frame.setResizable(false);
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

    final ArrayList<CSDept> cS= new ArrayList();
    File readFile =new File("read.txt");
    final File writeFile=new File("write.txt");


    try {
        Scanner scan=new Scanner(readFile);
        while(scan.hasNext()){
            CSDept student=new CSDept();
            student.setStudentName(scan.next());
            student.setJava(scan.nextDouble());
            student.setDataStructure(scan.nextDouble());
            student.setAlgorithms(scan.nextDouble());
            cS.add(student);


        }
    } catch (FileNotFoundException e) {
        e.printStackTrace();
        JOptionPane.showMessageDialog(null, "OPS! File is not found");
        }

    btnFirst.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) {
            CSDept firstStudent=new CSDept();
            firstStudent.setStudentName(cS.get(0).getStudentName());
            firstStudent.setJava(Double.parseDouble(cS.get(0).getJava()));
            firstStudent.setDataStructure(Double.parseDouble(cS.get(0).getDataStructure()));
            firstStudent.setAlgorithms(Double.parseDouble(cS.get(0).getAlgorithms()));

            for (int i=0;i<cS.size();i++){
                if (cS.get(i).compareTo(cS.get(i+1))==-1){
                    firstStudent=cS.get(i+1);
                }
            }
            txtName.setText(firstStudent.getStudentName());
            txtJava.setText(firstStudent.getJava());
            txtDataStructure.setText(firstStudent.getDataStructure());
            txtAlgorithm.setText(firstStudent.getAlgorithms());
            lblFirst.setText("The First Student is: "+ txtName.getText());
            PrintWriter out;
            try {
                out = new PrintWriter(new BufferedWriter(new FileWriter(writeFile,true)));
                for (CSDept cs: cS){

                    out.println(cs.toString());
                    out.print("The first student is " + firstStudent.toString());
                }
                 out.close();
            } catch (IOException e1) {
                e1.printStackTrace();
                JOptionPane.showMessageDialog(null, "OPS! File in Not Found");
            }

        }
    });

}}

您的问题是,您试图从空的列表中获取特定索引处的元素:

final ArrayList<CSDept> cS= new ArrayList();

// ...

public void actionPerformed(ActionEvent e) {
    // ...
    firstStudent.setStudentName(cS.get(0).getStudentName()); // ArrayList cS is empty here
    // ...
您的列表为空的原因可能是您正在读取一个空文件“read.txt”,因此您的
while
循环条件从不为
true

Scanner scan=new Scanner(readFile); // this text file is probably empty
while(scan.hasNext()){              // which makes this condition always false so loop is never executed
    CSDept student=new CSDept();
    student.setStudentName(scan.next());
    student.setJava(scan.nextDouble());
    student.setDataStructure(scan.nextDouble());
    student.setAlgorithms(scan.nextDouble());
    cS.add(student);
}
此外,在
actionPerformed()
内的
for
循环中存在风险。您将当前元素与下一个元素进行比较,一旦
i
对应于最后一个元素的索引,该元素将在比较语句中给出索引为
i+1
的元素的AIOBE:

for (int i=0;i<cS.size();i++){
    if (cS.get(i).compareTo(cS.get(i+1))==-1){  // once i = cS.size() - 1, you will get an AIOBE here
        firstStudent=cS.get(i+1);
    }
}

for(int i=0;列表
cS
为空,因此索引0处没有元素。您可以通过使用迭代器或增强的
for
循环来避免这种情况,而不是使用
List#get(int index)
遍历列表。cS.get(0)将导致越界。您有一个列表,但它是空的。请检查您的程序是否进入此循环:while scan.hasNext()@RayaRateb,检查您文件的内容
read.txt
我的文件不是空的,代码本身有什么问题吗?当您读取文件时,检查所有可能的错误:文件未找到、空、格式错误,…完成后,检查扫描仪的内容,如果内容已成功加载,是否在
中放置断点>而
在上面循环并检查是否输入了循环?
Scanner scan=new Scanner(readFile); // this text file is probably empty
while(scan.hasNext()){              // which makes this condition always false so loop is never executed
    CSDept student=new CSDept();
    student.setStudentName(scan.next());
    student.setJava(scan.nextDouble());
    student.setDataStructure(scan.nextDouble());
    student.setAlgorithms(scan.nextDouble());
    cS.add(student);
}
for (int i=0;i<cS.size();i++){
    if (cS.get(i).compareTo(cS.get(i+1))==-1){  // once i = cS.size() - 1, you will get an AIOBE here
        firstStudent=cS.get(i+1);
    }
}