我已经弄清楚了如何JTable
正确地对a
进行排序,但是当表单元发生更改时,我无法弄清楚如何自动更新排序顺序。现在,我有这段代码(很长),主要是基于Java教程的How to Use
Tables中的代码
。我强调了我所做的更改// ADDED
。在这种情况下,新添加的值可以正确排序,但是当我进入编辑值时,即使我打电话给我,它似乎也没有采取任何措施fireTableCellUpdated
。
简而言之,当模型中的数据值更改时,如何使表重新排序?
/*
* Copyright (c) 1995 - 2008 Sun Microsystems, Inc. All rights reserved.
* See the standard BSD license.
*/
package components;
/*
* TableSortDemo.java requires no other files.
*/
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
public class TableSortDemo extends JPanel {
private boolean DEBUG = false;
public TableSortDemo() {
super();
setLayout(new BoxLayout(TableSortDemo.this, BoxLayout.PAGE_AXIS));
final MyTableModel m = new MyTableModel();
JTable table = new JTable(m);
table.setPreferredScrollableViewportSize(new Dimension(500, 70));
table.setFillsViewportHeight(true);
table.setAutoCreateRowSorter(true);
//Create the scroll pane and add the table to it.
JScrollPane scrollPane = new JScrollPane(table);
//Add the scroll pane to this panel.
add(scrollPane);
// ADDED: button to add a value
JButton addButton = new JButton("Add a new value");
addButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
m.addValue(
JOptionPane.showInputDialog(
TableSortDemo.this, "Value?"));
}
});
// ADDED button to change a value
JButton setButton = new JButton("Change a value");
setButton.addActionListener(new ActionListener() {
/* (non-Javadoc)
* @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
*/
public void actionPerformed(ActionEvent e) {
m.setValueAt(
JOptionPane.showInputDialog(
TableSortDemo.this, "Value?"),
Integer.parseInt(
JOptionPane.showInputDialog(
TableSortDemo.this, "Which?")), 0);
}
});
add(addButton);
add(setButton);
}
class MyTableModel extends AbstractTableModel {
private static final long serialVersionUID = -7053335255134714625L;
private String[] columnNames = {"Column"};
// ADDED data as mutable ArrayList
private ArrayList<String> data = new ArrayList<String>();
public MyTableModel() {
data.add("Anders");
data.add("Lars");
data.add("Betty");
data.add("Anna");
data.add("Jon");
data.add("Zach");
}
// ADDED
public void addValue(Object v) {
data.add(v.toString());
int row = data.size() - 1;
fireTableRowsInserted(row, row);
}
public int getColumnCount() {
return columnNames.length;
}
public int getRowCount() {
return data.size();
}
public String getColumnName(int col) {
return columnNames[col];
}
public Object getValueAt(int row, int col) {
return data.get(row) + " " + row;
}
/*
* JTable uses this method to determine the default renderer/
* editor for each cell. If we didn't implement this method,
* then the last column would contain text ("true"/"false"),
* rather than a check box.
*/
public Class<String> getColumnClass(int c) {
return String.class;
}
/*
* Don't need to implement this method unless your table's
* editable.
*/
public boolean isCellEditable(int row, int col) {
//Note that the data/cell address is constant,
//no matter where the cell appears onscreen.
if (col < 2) {
return false;
} else {
return true;
}
}
/*
* Don't need to implement this method unless your table's
* data can change.
*/
public void setValueAt(Object value, int row, int col) {
if (DEBUG) {
System.out.println("Setting value at " + row + "," + col
+ " to " + value
+ " (an instance of "
+ value.getClass() + ")");
}
data.set(row, value.toString());
// ADDED: uncommented this line, despite warnings to the contrary
fireTableCellUpdated(row, col);
if (DEBUG) {
System.out.println("New value of data:");
printDebugData();
}
}
private void printDebugData() {
int numRows = getRowCount();
int numCols = getColumnCount();
for (int i=0; i < numRows; i++) {
System.out.print(" row " + i + ":");
for (int j=0; j < numCols; j++) {
System.out.print(" " + data.get(i));
}
System.out.println();
}
System.out.println("--------------------------");
}
}
/**
* Create the GUI and show it. For thread safety,
* this method should be invoked from the
* event-dispatching thread.
*/
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("TableSortDemo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Create and set up the content pane.
TableSortDemo newContentPane = new TableSortDemo();
newContentPane.setOpaque(true); //content panes must be opaque
frame.setContentPane(newContentPane);
//Display the window.
frame.pack();
frame.setVisible(true);
}
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();
}
});
}
}
这采取了两步解决方案:
首先,我使用TableSorter来对数据更改进行排序,而不是使用autoCreateRowSorter
:
sorter = new TableRowSorter<MyTableModel>(m);
table.setRowSorter(sorter);
sorter.setSortsOnUpdates(true);
然后,我不得不更改更新方法以更新整个表。在fireTableCellUpdated
与fireTableRowsUpdated
只重绘进行了更新,而不是整个表中的特定行(这意味着你会得到一个复本出现的条目改变,只要它是重绘后。所以,我改变
fireTableCellUpdated(row, col);
至
fireTableRowsUpdated(0, data.size() - 1);
现在它可以正确排序,即使发生数据更改也可以保留选择。
问题内容: 我有以下静态html: 我有以下jQuery: 这可以完美地工作,但是一旦我使用jQuery / AJAX生成上述HTML,它就会停止工作。因此,我假设我需要在jQuery中使用“实时”功能来执行可排序部分。有人可以帮我实现吗? 问题答案: 是基于事件的,因此您不能将其用于此类插件。您 可以 轻松完成,就是在您的AJAX调用结束时调用该代码,例如: 的缩写形式也是如此,例如:
我想在cassandra 1.2 CQL 3.0上实现一个实时的内容排名系统 示例:根据用户投票提供新闻的前10条评论 用户可以评论新闻 用户可以对每条评论投票+1或-1 “真实例子youtube评论” 我的解决方案是: 在计数器表(content_counter)上存储投票计数器 创建排名表 null 选择core FROM content_counter where content_id='x
本文向大家介绍javascript排序函数实现数字排序,包括了javascript排序函数实现数字排序的使用技巧和注意事项,需要的朋友参考一下 javascript排序函数实现数字排序 以上所述就是本文的全部内容了,希望大家能够喜欢。
我将我的数据存储在卡珊德拉·NoSQL数据库中,模式如下: 然后我使用。我希望数据是按时间序列排列的,第一天确实如此,但今天情况发生了变化。 我认为数据库忽略了日期,而只关心时间。 知道怎么解决这个问题吗?
本文向大家介绍Python选择排序、冒泡排序、合并排序代码实例,包括了Python选择排序、冒泡排序、合并排序代码实例的使用技巧和注意事项,需要的朋友参考一下 前两天刚装了python 3.1.1, 禁不住技痒写点code。 1.选择排序 2.冒泡排序 3.合并排序
本文向大家介绍PHP实现排序堆排序(Heap Sort)算法,包括了PHP实现排序堆排序(Heap Sort)算法的使用技巧和注意事项,需要的朋友参考一下 算法引进: 在这里我直接引用《大话数据结构》里面的开头: 在前面讲到 简单选择排序 ,它在待排序的 n 个记录中选择一个最小的记录需要比较 n - 1 次,本来这也可以理解,查找第一个数据需要比较这么多次是正常的,否则如何知道他是最小的记录。