使用HashMap将数据输入表中

时间:2017-02-12 00:54:40

标签: java arrays swing hashmap jtable

在下面的代码中,我有一个方法,它应该从文本文件(姓氏,名字,类名)中获取数据并告诉学生是否存在(出勤),然后填充一个表格,其值为“仅”学生出现一定次数(基本上少于输入文本字段所指定的时间)。我尝试使用hashmap,但不确定在哪里放置“put”语句以正确填充hashmap。我在表格中重复了一些信息,我不想重复。我的代码如下:非常感谢任何帮助。

   public void processFile() throws FileNotFoundException{
   DefaultTableModel model = (DefaultTableModel) this.jTable_areasOfConcern.getModel();  
   File g = new File("pupilSortTemp.txt");      
   InputStream is;
   Scanner scan = null;
   HashMap<Integer, String> attendanceList = new HashMap<>();
   try {
        String firstName;
        String lastName;
        String className;
        String studentKey;
        String tab = "\t";
        String attendance;           
        int attendanceCount = 0;

        int totalDaysOrLessStudentsPresent;
        totalDaysOrLessStudentsPresent = Integer.valueOf(this.jTextField_totalDays.getText());
        is = new FileInputStream(g);
        scan = new Scanner(is);
        String[] array;
        String line = scan.nextLine();            
            if (line.contains(tab)) {
                array = line.split(tab);
            } 
            else {
            array = line.split("\n");
            }
            firstName = array[0];
            lastName = array[1];                   
            className = array[2];
            attendance = array[4];               
            System.out.println("firstName=" + firstName);
            System.out.println("lastName=" + lastName);
            System.out.println("className=" + className);
            System.out.println("attendance=" + attendance);
            if (attendance.equals("Present")){
                attendanceCount++;
                studentKey = firstName + tab + lastName + tab + className;
                attendanceList.put(attendanceCount, studentKey);                     
                System.out.println("attendanceCountIfPresent=" + attendanceCount);
            }
            System.out.println("attendanceCountIfNotPresent=" + attendanceCount);
            while (scan.hasNextLine()) {
                line = scan.nextLine();
                if (line.contains(tab)) {
                    array = line.split(tab);
                }    
                else {
                    array = line.split("\n");
                } 
                System.out.println("array0=" + array[0]);
                System.out.println("array1=" + array[1]);
                System.out.println("array2=" + array[2]);
                System.out.println("array4=" + array[4]);
                if (array[0].equals(firstName) && array[1].equals(lastName)){
                    if (array[4].equals("Present") && (attendanceCount < totalDaysOrLessStudentsPresent)){
                        attendanceCount++;
                        //studentKey = firstName + tab + lastName + tab + className;
                        //attendanceList.put(attendanceCount, studentKey); 
                        System.out.println("attendanceCountIfPresent==" + attendanceCount);
                        model.addRow(new Object[]{array[2], array[1], array[0], attendanceCount, true});


                    }
                }else {
                    if (array[4].equals("Present") && (attendanceCount < totalDaysOrLessStudentsPresent)){
                    attendanceCount = 1;                       
                    System.out.println("attendanceCountIfPresent++=" + attendanceCount);
                    firstName = array[0];
                    lastName = array[1];                   
                    className = array[2];
                    attendance = array[4];
                    model.addRow(new Object[]{array[2], array[1], array[0], attendanceCount, true});
                    studentKey = firstName + tab + lastName + tab + className;
                    attendanceList.put(attendanceCount, studentKey); 

                    }
                    else {
                        attendanceCount = 0;                         
                    }
                }

             //attendanceList.put(attendanceCount, studentKey);   
            }//end while
           for (Map.Entry<Integer, String> entry : attendanceList.entrySet()) {
                studentKey = entry.getValue();
                attendanceCount = entry.getKey();                    
                array = studentKey.split(tab);
                model.addRow(new Object[]{array[2], array[1], array[0], attendanceCount, true});
            }         
        }catch (FileNotFoundException e){
        }
        finally{
        if(scan != null){
           scan.close();
        }
        }
    }

1 个答案:

答案 0 :(得分:2)

我不认为我会在你做的时候使用HashMap,如果我这样做,那么出勤率肯定会用作地图的关键字段。所有这一切都将保证只有一名具有该出勤计数的学生进入该系列。创建一个Student类,为其提供所需的字段,包括name,maybe studentId和yes,attendanceCount,并创建一个可能是ArrayList<Student>的集合。然后,如果你想对它进行排序,你可以使用一个对出勤计数值进行排序的比较器,或者如果你想过滤它,你可以使用相同的字段值来过滤它。

另外,我的Student类覆盖了equals和hashCode,并且会对这些方法使用不变字段,而且大多数出勤字段。如果学生已经存在于ArrayList中,通过在列表上调用contains(student),那么我就会增加该学生的出勤率。否则,我会将新学生添加到列表中。

如果必须使用HashMap,则可以反转键和值字段,即将其作为HashMap<Student, Integer>,其值为出勤次数。再次为此工作学生需要使用这些方法中的一个或多个字段来覆盖其equals和hashCode方法,例如studentID。