- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有三个文件,TopicData、TopicView、TopicTableModel。我的程序使用数据库中的值显示一个表。现在,当我单击一行时,会打印该行的索引。 我想修改代码,改为打印我数据库中的 topicID。topicID 的值存储在 ArrayList 中但不显示在表中,因此我不能使用 JTable.getValueAt( ).
请指教如何修改我的代码。提前致谢。
更多信息:
TopicData 从数据库中获取数据并将其存储在 ArrayList 中。
然后将 ArrayList 传递给 TopicTableModel,其中数据适合在 JTable 中显示。
TopicView 创建一个 JTable 并接收 TopicTableModel 以生成 JTable。
主题数据.java
public class TopicData {
int id;
String name;
String date;
String category;
String user;
public TopicData(){
}
public TopicData(int id, String name, String date, String category, String user) {
this.id = id;
this.name = name;
this.date = date;
this.category = category;
this.user = user;
}
public TopicData(String name, String date, String category, String user) {
this.name = name;
this.date = date;
this.category = category;
this.user = user;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public ArrayList<TopicData> getTopicList(){
ArrayList<TopicData> topicList = new ArrayList<TopicData>();
ResultSet rs = null;
DBController db = new DBController();
db.setUp("myDatabase");
String dbQuery = "SELECT topicID, topicName, topicDate, topicCategory, topicUser FROM topicTable ORDER BY topicDate";
rs = db.readRequest(dbQuery);
try{
while(rs.next()){
int id = rs.getInt("topicID");
String name = rs.getString("topicName");
String date = rs.getString("topicDate") ;
String category = rs.getString("topicCategory");
String user = rs.getString("topicUser");
TopicData topic = new TopicData (id, name, date, category, user);
topicList.add(topic);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
db.terminate();
return topicList;
}
主题表模型.java
public class TopicTableModel extends AbstractTableModel {
private static final long serialVersionUID = 1L;
private int rowCount, colCount;
private String[] columnNames = {"Name", "Date", "User"};
private Object [][] data;
public TopicTableModel(ArrayList<TopicData> listOfObjects) {
rowCount = listOfObjects.size();
colCount = columnNames.length;
data = new Object[rowCount][colCount];
for (int i = 0; i < rowCount; i++) {
//Copy an ArrayList element to an instance of MyObject
TopicData topic = (listOfObjects.get(i));
data[i][0] = topic.getName();
data[i][1] = topic.getDate();
data[i][2] = topic.getUser();
}
}
@Override
public int getColumnCount() {
// TODO Auto-generated method stub
return colCount;
}
@Override
public int getRowCount() {
// TODO Auto-generated method stub
return rowCount;
}
@Override
public String getColumnName(int col) {
return columnNames[col];
}
@Override
public Object getValueAt(int rowIndex, int columnIndex) {
// TODO Auto-generated method stub
return data[rowIndex][columnIndex];
}
@Override
public boolean isCellEditable(int rowIndex, int colIndex) {
return false; //Disallow the editing of any cell
}
}
主题 View .java
private JTable getTable() {
if (table == null) {
TopicData topic= new TopicData();
TopicTableModel tableModel = new TopicTableModel(topic.getTopicList());
table = new JTable(tableModel);
table.setShowGrid(false);
table.setFillsViewportHeight(true);
table.setBounds(173, 87, 456, 263);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.getTableHeader().setReorderingAllowed(false);
table.getTableHeader().setResizingAllowed(false);
table.getColumnModel().getColumn(0).setPreferredWidth(500);
ListSelectionModel rowSM = table.getSelectionModel();
rowSM.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {
//Ignore extra messages.
if (e.getValueIsAdjusting()) return;
ListSelectionModel lsm = (ListSelectionModel)e.getSource();
if (lsm.isSelectionEmpty()) {
System.out.println("No rows are selected.");
}
else {
int selectedRow = lsm.getMinSelectionIndex();
System.out.println("Row " + selectedRow + " is now selected.");
}
}
});
}
return table;
}
最佳答案
您正在以艰难的方式做到这一点。无需将 TopicData 转换为数组,只需让您的 TableModel 直接读取 TopicData 对象的 ArrayList,因此每个 TopicData 对应一行。
主题表模型.java:
import java.util.ArrayList;
import javax.swing.table.AbstractTableModel;
public class TopicTableModel extends AbstractTableModel {
private static final long serialVersionUID = 1L;
private String[] columnNames = {"Name", "Date", "User"};
private ArrayList<TopicData> data;
public TopicTableModel(ArrayList<TopicData> listOfObjects) {
data = listOfObjects;
}
@Override
public int getColumnCount() {
return columnNames.length;
}
@Override
public int getRowCount() {
return data.size();
}
@Override
public String getColumnName(int col) {
return columnNames[col];
}
@Override
public Object getValueAt(int rowIndex, int columnIndex) {
switch (column) {
case 0:
return data.getName();
case 1:
return data.getDate();
case 2:
return data.getUser();
default:
throw new ArrayIndexOutOfBoundsException();
}
}
@Override
public boolean isCellEditable(int rowIndex, int colIndex) {
return false; //Disallow the editing of any cell
}
public TopicData getTopic(int row) {
return data.get(row);
}
}
通过对 TopicView.java 进行一些小的修改,您现在可以获取所选行的 TopicData 并打印其 ID。
主题 View .java:
import javax.swing.JTable;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
public class TopicView {
JTable table;
private JTable getTable() {
if (table == null) {
TopicData topic= new TopicData();
final TopicTableModel tableModel = new TopicTableModel(topic.getTopicList());
table = new JTable(tableModel);
table.setShowGrid(false);
table.setFillsViewportHeight(true);
table.setBounds(173, 87, 456, 263);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.getTableHeader().setReorderingAllowed(false);
table.getTableHeader().setResizingAllowed(false);
table.getColumnModel().getColumn(0).setPreferredWidth(500);
table.setDefaultRenderer(TopicData.class, new TopicDataTableCellRenderer());
ListSelectionModel rowSM = table.getSelectionModel();
rowSM.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {
//Ignore extra messages.
if (e.getValueIsAdjusting()) return;
int row = table.getSelectedRow();
if (row < 0) {
System.out.println("No rows are selected.");
}
else {
System.out.println("id " + tableModel.getTopic(row).getId() + " is now selected.");
}
}
});
}
return table;
}
}
关于java - JTable:选择一行时从数据库中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14284378/
是否有某种方法可以使用 JPA 或 Hibernate Crtiteria API 来表示这种 SQL?或者我应该将其作为 native 执行吗? SELECT A.X FROM (SELECT X,
在查询中, select id,name,feature,marks from (....) 我想删除其 id 在另一个 select 语句中存在的那些。 从 (...) 中选择 id 我是 sql
我想响应用户在 select 元素中选择一个项目。然而这个 jQuery: $('#platypusDropDown').select(function () { alert('You sel
这个问题在这里已经有了答案: SQL select only rows with max value on a column [duplicate] (27 个回答) 关闭8年前。 我正在学习 SQL
This question already has answers here: “Notice: Undefined variable”, “Notice: Undefined index”, and
我在 php 脚本中调用 SQL。有时“DE”中没有值,如果是这种情况我想从“EN”中获取值 应该是这样的,但不是这样的 IF (EXISTS (SELECT epf_application_deta
这可能是一个奇怪的问题,但不知道如何研究它。执行以下查询时: SELECT Foo.col1, Foo.col2, Foo.col3 FROM Foo INNER JOIN Bar ON
如何在使用 Camera.DestinationType.FILE_URI. 时在 phonegap camera API 中同时选择或拾取多个图像我能够一次只选择一张图像。我可以使用 this 在
这是一个纯粹的学术问题。这两个陈述实际上是否相同? IF EXISTS (SELECT TOP 1 1 FROM Table1) SELECT 1 ELSE SELECT 0 相对 IF EXIS
我使用 JSoup 来解析 HTML 响应。我有多个 Div 标签。我必须根据 ID 选择 Div 标签。 我的伪代码是这样的 Document divTag = Jsoup.connect(link
我正在处理一个具有多个选择框的表单。当用户从 selectbox1 中选择一个选项时,我需要 selectbox2 active 的另一个值。同样,当他选择 selectbox2 的另一个值时,我需要
Acme Inc. Christa Woods Charlotte Freeman Jeffrey Walton Ella Hubbard Se
我有一个login.html其中form定义如下: First Initial Plus Last Name : 我的do_authorize如下: "; pri
$.get( 'http://www.ufilme.ro/api/load/maron_online/470', function(data
我有一个下拉列表“磅”、“克”、“千克”和“盎司”。我想要这样一种情况,当我选择 gram 来执行一个函数时,当我在输入字段中输入一个值时,当我选择 pounds 时,我想要另一个函数来执行时我在输入
我有一个 GLSL 着色器,它从输入纹理的 channel 之一(例如 R)读取,然后写入输出纹理中的同一 channel 。该 channel 必须由用户选择。 我现在能想到的就是使用一个 int
我想根据下拉列表中的选定值生成输入文本框。 Options 2 3 4 5 就在这个选择框之后,一些输入字段应该按照选定的数字出现。 最佳答案 我建议您使用响应式(Reac
我是 SQL 新手,我想问一下如何根据首选项和分组选择条目。 +----------+----------+------+ | ENTRY_ID | ROUTE_ID | TYPE | +------
我有以下表结构: CREATE TABLE [dbo].[UTS_USERCLIENT_MAPPING_USER_LIST] ( [MAPPING_ID] [int] IDENTITY(1,1
我在移除不必要的床单时遇到了问题。我查看了不同的论坛并将不同的解决方案混合在一起。 此宏删除工作表(第一张工作表除外)。 Sub wrong() Dim sht As Object Applicati
我是一名优秀的程序员,十分优秀!