gpt4 book ai didi

java - 在没有 CSVReader 的情况下将 CSV 文件导入 JTable

转载 作者:太空宇宙 更新时间:2023-11-04 12:13:41 24 4
gpt4 key购买 nike

如何在不使用 CSVReader 的情况下将 CSV 文件导入到 JTable 中。我目前正在使用扫描仪,但我一直致力于将 CSV 文件中的数据获取到 Object[][] 中。

最佳答案

你可以做这样的事情。

ArrayList<String[]> data = new ArrayList<String[]>();
while( myScanner.hasNextLine()) {
//get one row
String oneRow = myScanner.nextLine();
//then split the line by comma
String[] oneSplitRow = oneRow.split(",");
//add your data to the arraylist
data.add(oneSplitRow);
}
// now to make the Object[][]
Object[][] theData = new Object[data.size()][data.get(0).length];
// and here is where you can iterate through the data arraylist and put
// the strings into theData 2d array
// ..... your code here

关于java - 在没有 CSVReader 的情况下将 CSV 文件导入 JTable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39628798/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com