我已经导入了一个.csv
数据库文件,其中列出了程序的用户,以及以下形式的其他信息:UserName、Password、PropertyName、EstimatedValue。
我已经想出了如何获取用户名,但它只会读取数据库中的最后一个用户名,而不会读取其他用户名。帮助将不胜感激。
import java.util.*;
import java.io.*;
public class readCSV
{
String[] userData;
public void checkLogin() throws IOException
{
try
{
File file = new File("C:/Users/Sean/Documents/Programming assigment/Users.csv");
BufferedReader bufRdr = new BufferedReader(new FileReader(file));
String lineRead = bufRdr.readLine();
while(lineRead != null)
{
this.userData = lineRead.split(",");
lineRead = bufRdr.readLine();
}
bufRdr.close();
}
catch(Exception er){
System.out.print(er);
System.exit(0);
}
}
}