- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 MySQL 中有一些数据,必须检索这些数据并在 JTable 中显示。我为此编写的代码如下
PreparedStatement ps = con.prepareStatement("select * from " + chosenClass
+ " where subjects=?;");
ps.setString(1, selectedGroup);
rs = ps.executeQuery();
rs.next();
subjects[0] = rs.getString("sub1");
subjects[1] = rs.getString("sub2");
subjects[2] = rs.getString("sub3");
subjects[3] = rs.getString("sub4");
subjects[4] = rs.getString("sub5");
subjects[5] = "H.V";
tableModel.setColumnIdentifiers(new Object[]{"RollNo", "Name", subjects[0], subjects[1],
subjects[2], subjects[3], subjects[4], subjects[5]});
tableModel = (DefaultTableModel) StuMarks_TBL.getModel();
//I tried this after some help from internet
String classToGet = "";
if (chosenClass.matches("class12subjects")) {
classToGet = "XII";
} else if (chosenClass.matches("class11subjects")) {
classToGet = "XI";
}
Query = "select sd.rollno, name, sub1, sub2, sub3, sub4, sub5, sub6 "
+ "from stu_details sd join stu_marks sm "
+ "where sm.rollno = sd.rollno "
+ " and sd.optionalSubject='" + selectedGroup + "' and sd.class='"
+ classToGet + "';";
rs = st.executeQuery(Query);
i = 0;
while (rs.next()) {
tableModel.addRow(new Object[]{
rs.getString("rollno"),
rs.getString("name"),
rs.getString("sub1"),
rs.getString("sub2"),
rs.getString("sub3"),
rs.getString("sub4"),
rs.getString("sub5"),
rs.getString("sub6")});
//tableModel.setValueAt(1, 1, 4);
//When this is written, i am able to see 1 row in the output and then an array index out of exception
System.out.println(rs.getString("rollno")
+ rs.getString("name")
+ rs.getString("sub1")
+ rs.getString("sub2")
+ rs.getString("sub3")
+ rs.getString("sub4")
+ rs.getString("sub5")
+ rs.getString("sub6"));
}
}
我可以使用System.out.println打印输出面板中的所有详细信息。但它没有被添加到表中。
正如您所看到的 //tableModel.setValueAt(1, 1, 4); 附近的异常,即数组索引超出范围,显示一行(第零行)。我觉得这些行正在被添加,然后以某种方式被删除。我无法弄清楚。有人可以在这方面帮助我吗?
最佳答案
我不太确定您想要完成什么,因为您的代码片段没有透露所有必要的数据。您的问题实际上是两个问题,如何向表格添加一行以及如何打印表格的内容。所附代码是我编写的一种方法,用于完成其他任务,该方法已被编辑以删除多余的 Material 并使表格通用。它将创建一个包含 5 列和 6 行数据的表,可以添加或删除行,并使用 System.out.println(….) 打印出每行所有元素的内容;作为单独的线路。我希望这个对你有用。将代码导入到 IDE 中,您可以根据需要编译、执行和编辑它。R·米切尔
导入java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumn;
import javax.swing.table.TableColumnModel;
class ModelJTable extends JFrame {
/**
* This application will create a table with 5 columns (0 to 4) and 6 rows
* (0 to 5). It will allow the removal of any or all rows individually. It
* will add row(s) as determined by commenting/uncommenting code. It will
* print the contents of all of the displayed rows as individual lines.
* That is:
* line 0, column 0 (line feed) line 0, column 1 (line feed) etc. Some of
* the comments are probably not applicable and most were for my
* information when I wrote the app.
*/
/**
* class variables
*/
public DefaultTableModel model;
public JTable table;
/**
* Table rows redefined to match column names. Not required. Automatically
* appends nulls.
*/
String[] rowZero = {"R0-C0", "R0-C1", "R0-C2", "R0-C3", "R0-C4"};
String[] rowOne = {"R1-C0", "R1-C1", "R1-C2", "R1-C3", "R1-C4"};
String[] newRow; // undefined String[]
public ModelJTable() {
super();
/**
* Redefined column names.
*/
model = new DefaultTableModel();
model.addColumn("Column 0");
model.addColumn("Column 1");
model.addColumn("Column 2");
model.addColumn("Col 3");
model.addColumn("Col 4");
/**
* moved to class variable to demonstrate that the row entry can be
* defined as a class variable. String[] rowZero = {"R0-C0", "R0-C1",
* "R0-C2", "R0-C3", "R0C4"};
*/
// model.addRow(socrates);
model.addRow(rowZero);
/**
* moved to class variable to demonstrate that the row entry can be
* defined as a class variable. String[] rowOne = {"R1-C0", "R1-C1",
* "R1-C2", "R1-C3", "R1-C4"};
*/
model.addRow(rowOne);
String[] rowTwo = {"R2-C0", "R2-C1", "R2-C2", "R2-C3", "R2-C4"};
model.addRow(rowTwo);
String[] rowThree = {"R3-C0", "R3-C1", "R3-C2", "R3-C3", "R3-C4"};
model.addRow(rowThree);
String[] rowFour = {"R4-C0", "R4-C1", "R4-C2", "R4-C3", "R4-C4"};
model.addRow(rowFour);
String[] rowFive = {"R5-C0", "R5-C1", "R5-C2", "R5-C3", "R5-C4"};
model.addRow(rowFive);
/**
* emptyRow elements must be "" NOT "null" or any other string.
*/
// String[] emptyRow = {"", "", "", "", ""};
// model.addRow(emptyRow);
table = new JTable(model, (TableColumnModel) table);
TableColumn nameColumn = table.getColumnModel().getColumn(0);
nameColumn.setPreferredWidth(75);
TableColumn surNameColumn = table.getColumnModel().getColumn(1);
surNameColumn.setPreferredWidth(75);
TableColumn datesColumn = table.getColumnModel().getColumn(2);
datesColumn.setPreferredWidth(300);
TableColumn column4 = table.getColumnModel().getColumn(3);
column4.setPreferredWidth(30);
TableColumn column5 = table.getColumnModel().getColumn(4);
column5.setPreferredWidth(30);
JButton quitButton = new JButton("Quit");
quitButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
System.exit(0);
}
});
JButton printTableButton = new JButton("Print Table");
printTableButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
printFile(); // go to print file method
}
});
JButton addButton = new JButton("Add Row");
addButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
addNewRow();
}
});
JButton removeButton = new JButton("Remove Row");
removeButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
try {
model.removeRow(table.getSelectedRow());
} catch (Exception e) {
System.out.println("Nothing selected to remove.");
}
}
});
JPanel inputPanel = new JPanel();
inputPanel.add(quitButton);
inputPanel.add(printTableButton);
inputPanel.add(addButton);
inputPanel.add(removeButton);
JPanel southernPanel = new JPanel();
Container container = getContentPane();
container.add(inputPanel, BorderLayout.SOUTH);
container.add(southernPanel, BorderLayout.NORTH);
container.add(new JScrollPane(table), BorderLayout.CENTER);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(600, 600);
this.setUndecorated(true);
this.setResizable(false);
this.setLocationRelativeTo(null);
setVisible(true);
} // end of public ModelJTable() method
public void addNewRow() {
String[] addRow = {"New Row", "New Row", "New Row", "New Row",
"New Row"};
model.addRow(addRow);
}
/**
* public static void main(String args[]) { new ModelJTable(); } // end of
* main()
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new ModelJTable().setVisible(true);
}
});
}
public void printFile() {
int rowCount = model.getRowCount(); // rowCount is decimal (1 to X)
int columnNumber = 0;
int rowNumber = 0;
String rowElement = "";
// System.out.println("Printing the rows of the table.");
// System.out.println("rowCount = " + rowCount);
/**
* Row numbering is zero to X. rowCount is decimal (1 to X).
*/
int elementNumber = 0; // initialize elementNumber
/**
* There are 5 elements (0 to 4) in each row. There are rowCount rows (1
* to rowCount) in the table. Therefore there are rowCount * 5 elements
* to be printed.
*/
int endOfLoop = 5 * rowCount;
//System.out.println("Number of elements in the table = " + endOfLoop);
for (int i = 0; i < endOfLoop; i++) {
System.out.println(model.getValueAt(rowNumber, elementNumber)
.toString());
if (elementNumber == 4) {
elementNumber = 0;
rowNumber++;
} else {
elementNumber++;
}
}
}
} // end of class ModelJTable
关于java - DefaultTableModel 中的 addrow 方法不添加行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51496151/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!