除了排序方法之外,我得到了其他一切工作。我需要根据学生的第一个属性对 HashMap 中的学生进行排序。我需要在将所有学生添加到 HashMap 之后发生排序方法,而不是在添加时发生。
package HashMap;
        import java.io.InputStream;
        import java.util.HashMap;
        import java.util.HashSet;
        import java.util.Scanner;
        public class clubMapping {
            HashMap<String, HashSet<Student>> map = new HashMap<String, HashSet<Student>>();
            public clubMapping(String clubName) {
                InputStream is = getClass().getClassLoader().getResourceAsStream(
                        "student.txt");
                Scanner scan = new Scanner(is);
                while (scan.hasNext())
                    add(scan.next(), scan.next(), Integer.parseInt(scan.next()),
                            scan.next());
                scan.close();
                System.out.println(map);
                System.out.println();
                System.out.println(map.get(clubName));
            }
            public void add(String last, String first, Integer id, String club) {
                HashSet<Student> set = new HashSet<Student>();
                if (!map.containsKey(club)) {
                    set.add(new Student(last, first, id));
                    map.put(club, set);
                } else {
                    set = map.get(club);
                    set.add(new Student(last, first, id));
                }
            }
            public static void main(String[] args) {
                new clubMapping("Math");
            }
        }
    package HashMap;
    public class Student {
        String last, first;
        Integer id;
        public Student(String l, String f, Integer i) {
            last = l;
            first = f;
            id = i;
        }
        public String toString() {
            return last + " " + first + " " + id;
        }
    }