我将用户详细信息存储在txt文件中,使用","分隔名称和密码以及其他详细信息。现在我试图将所有用户名输出到jList。
try {
File f = new File("/Users/Nisham/Desktop/javapwd.txt");
Scanner sc = new Scanner(f);
while(sc.hasNextLine()){
String line = sc.nextLine();
String[] details = line.split(",");
String name = details[0];
jList2.add(name);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
好像我无法在列表中添加字符串。有没有办法可以这样做。