gpt4 book ai didi

java - 从特定的 CSV 文件中读取数据并将其显示在 JTable 中

转载 作者:搜寻专家 更新时间:2023-11-01 03:05:52 25 4
gpt4 key购买 nike

关于这个问题: Reading data from CSV file and displaying it in a JTable

我试图调整这个问题的程序以使其适合我的需要,但它出错了。我希望程序显示位于项目根目录中的文件(因此我必须编写 File DataFile = new File("res.csv");),仅此而已。问题是它只显示 2 行,而应该显示 4 行。

代码如下:

import java.util.*;
import java.awt.event.*;
import javax.swing.*;
import java.awt.BorderLayout;
import java.awt.*;
import javax.swing.border.EmptyBorder;
import java.io.*;
import javax.swing.table.*;

public class T1Data extends JPanel {
private final JTable table;

public T1Data() {
super(new BorderLayout(3, 3));

this.table = new JTable(new MyModel());
this.table.setPreferredScrollableViewportSize(new Dimension(700, 70));
this.table.setFillsViewportHeight(true);

JPanel ButtonOpen = new JPanel(new FlowLayout(FlowLayout.CENTER));
add(ButtonOpen, BorderLayout.SOUTH);

// Create the scroll pane and add the table to it.
JScrollPane scrollPane = new JScrollPane(table);

// Add the scroll pane to this panel.
add(scrollPane, BorderLayout.CENTER);

// add a nice border
setBorder(new EmptyBorder(5, 5, 5, 5));

CSVFile Rd = new CSVFile();
MyModel NewModel = new MyModel();
this.table.setModel(NewModel);
File DataFile = new File("res.csv");
ArrayList<String[]> Rs2 = Rd.ReadCSVfile(DataFile);

NewModel.AddCSVData(Rs2);
System.out.println("Rows: " + NewModel.getRowCount());
System.out.println("Cols: " + NewModel.getColumnCount());

}

// Method for reading CSV file
public class CSVFile {
private ArrayList<String[]> Rs = new ArrayList<>();
private String[] OneRow;

public ArrayList<String[]> ReadCSVfile(File DataFile) {
try {
BufferedReader brd = new BufferedReader(
new FileReader(DataFile));

while (brd.readLine() != null) {
String st = brd.readLine();
OneRow = st.split(",|\\s|;");
Rs.add(OneRow);
System.out.println(Arrays.toString(OneRow));
} // end of while
} // end of try
catch (Exception e) {
String errmsg = e.getMessage();
System.out.println("File not found:" + errmsg);
} // end of Catch
return Rs;
}// end of ReadFile method
}// end of CSVFile class

private static void createAndShowGUI() {
// Create and set up the window.
JFrame frame = new JFrame("T1Data");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

// Create and set up the content pane.
T1Data newContentPane = new T1Data();
frame.setContentPane(newContentPane);

// Display the window.
frame.pack();
frame.setVisible(true);
}

class MyModel extends AbstractTableModel {
private String[] columnNames = { "1", "2", "3", "4", "5", "6", "7", "8" };
private ArrayList<String[]> Data = new ArrayList<>();

public void AddCSVData(ArrayList<String[]> DataIn) {
this.Data = DataIn;
this.fireTableDataChanged();
}

@Override
public int getColumnCount() {
return columnNames.length;// length;
}

@Override
public int getRowCount() {
return Data.size();
}

@Override
public String getColumnName(int col) {
return columnNames[col];
}

@Override
public Object getValueAt(int row, int col) {
return Data.get(row)[col];

}
}

public static void main(String[] args) {
// Schedule a job for the event-dispatching thread:
// creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}

CSV文件内容:带“​​.”这似乎很麻烦:

Valeur par défaut,07/04/2014,0.5,1,0,0,0
Valeur par défaut,07/04/2014,0.5,1,0,0,0
Valeur par défaut,07/04/2014,0.5,1,0,0,0
Valeur par défaut,07/04/2014,0.5,1,0,0,0
Valeur par défaut,07/04/2014,0.5,1,0,0,0

最佳答案

您已经执行了两次 readLine。暂时条件和下一个条件。您正在丢失 while 条件下读取的行。

更新:将代码更改为以下内容并提供预期的输出:

package stackoverflow;

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.Arrays;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.border.EmptyBorder;
import javax.swing.table.AbstractTableModel;

public class T1Data extends JPanel {
private final JTable table;

public T1Data() {
super(new BorderLayout(3, 3));
this.table = new JTable(new MyModel());
this.table.setPreferredScrollableViewportSize(new Dimension(700, 70));
this.table.setFillsViewportHeight(true);
JPanel ButtonOpen = new JPanel(new FlowLayout(FlowLayout.CENTER));
add(ButtonOpen, BorderLayout.SOUTH);
// Create the scroll pane and add the table to it.
JScrollPane scrollPane = new JScrollPane(table);
// Add the scroll pane to this panel.
add(scrollPane, BorderLayout.CENTER);
// add a nice border
setBorder(new EmptyBorder(5, 5, 5, 5));
CSVFile Rd = new CSVFile();
MyModel NewModel = new MyModel();
this.table.setModel(NewModel);
File DataFile = new File("res.csv");
ArrayList<String[]> Rs2 = Rd.ReadCSVfile(DataFile);
NewModel.AddCSVData(Rs2);
System.out.println("Rows: " + NewModel.getRowCount());
System.out.println("Cols: " + NewModel.getColumnCount());
}

// Method for reading CSV file
public class CSVFile {
private final ArrayList<String[]> Rs = new ArrayList<String[]>();
private String[] OneRow;

public ArrayList<String[]> ReadCSVfile(File DataFile) {
try {
BufferedReader brd = new BufferedReader(new FileReader(DataFile));
while (brd.ready()) {
String st = brd.readLine();
OneRow = st.split(",|\\s|;");
Rs.add(OneRow);
System.out.println(Arrays.toString(OneRow));
} // end of while
} // end of try
catch (Exception e) {
String errmsg = e.getMessage();
System.out.println("File not found:" + errmsg);
} // end of Catch
return Rs;
}// end of ReadFile method
}// end of CSVFile class

private static void createAndShowGUI() {
// Create and set up the window.
JFrame frame = new JFrame("T1Data");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create and set up the content pane.
T1Data newContentPane = new T1Data();
frame.setContentPane(newContentPane);
// Display the window.
frame.pack();
frame.setVisible(true);
}

class MyModel extends AbstractTableModel {
private final String[] columnNames = { "1", "2", "3", "4", "5", "6", "7", "8" };
private ArrayList<String[]> Data = new ArrayList<String[]>();

public void AddCSVData(ArrayList<String[]> DataIn) {
this.Data = DataIn;
this.fireTableDataChanged();
}

@Override
public int getColumnCount() {
return columnNames.length;// length;
}

@Override
public int getRowCount() {
return Data.size();
}

@Override
public String getColumnName(int col) {
return columnNames[col];
}

@Override
public Object getValueAt(int row, int col) {
return Data.get(row)[col];
}
}

public static void main(String[] args) {
// Schedule a job for the event-dispatching thread:
// creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
createAndShowGUI();
}
});
}
}

更新:

输出: enter image description here

关于java - 从特定的 CSV 文件中读取数据并将其显示在 JTable 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22864095/

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