- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我找到了在单击 JTable 标题时选择特定列的代码。对于我的模块,如果有人选择了一个 JTable 单元格,则必须清除所有先前的列选择。我在单元格编辑器中成功更改了 table.setColumnSelectionAllowed(true);
或 table.setRowSelectionAllowed(false);
。
现在
HeaderLocation.java
public class HeaderLocation {
private JTable getTable() {
int rows = 32, cols = 4;
String[] colIds = { "column 1", "column 2", "column 3", "column 4" };
Object[][] data = new Object[rows][cols];
for(int row = 0; row < rows; row++) {
for(int col = 0; col < cols; col++) {
data[row][col] = "item " + (row*cols+col+1);
}
}
DefaultTableModel model = new DefaultTableModel(data, colIds);
final JTable table = new JTable(model);
final JTableHeader header = table.getTableHeader();
Enumeration<TableColumn> columns = table.getColumnModel().getColumns();
while(columns.hasMoreElements()){
columns.nextElement().setCellEditor(new CustomCellEditor());
}
//table.setCellEditor(new CustomCellEditor());
header.setReorderingAllowed(false);
header.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
int col = header.columnAtPoint(e.getPoint());
System.out.printf("click cursor = %d%n",
header.getCursor().getType());
if(header.getCursor().getType() == Cursor.E_RESIZE_CURSOR)
e.consume();
else {
//System.out.printf("sorting column %d%n", col);
table.setColumnSelectionAllowed(true);
table.setRowSelectionAllowed(false);
table.clearSelection();
table.setColumnSelectionInterval(col,col);
//tableModel[selectedTab].sortArrayList(col);
}
}
});
return table;
}
private JMenuBar getMenuBar() {
final JMenu view = new JMenu("view");
ActionListener l = new ActionListener() {
public void actionPerformed(ActionEvent e) {
JMenuItem item = (JMenuItem)e.getSource();
String className = item.getActionCommand();
changePLAF(className, view.getTopLevelAncestor());
}
};
UIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels();
for(int j = 0; j < info.length; j++) {
JMenuItem item = new JMenuItem(info[j].getName());
item.setActionCommand(info[j].getClassName());
item.addActionListener(l);
view.add(item);
}
JMenuBar menuBar = new JMenuBar();
menuBar.add(view);
return menuBar;
}
private void changePLAF(String className, Component c) {
try {
UIManager.setLookAndFeel(className);
} catch(ClassNotFoundException cnfe) {
System.err.println("class not found: " + cnfe.getMessage());
} catch(InstantiationException ie) {
System.err.println("instantiation: " + ie.getMessage());
} catch(IllegalAccessException iae) {
System.err.println("illegal access: " + iae.getMessage());
} catch(UnsupportedLookAndFeelException ulafe) {
System.err.println("unsupported laf: " + ulafe.getMessage());
}
SwingUtilities.updateComponentTreeUI(c);
}
public static void main(String[] args) {
HeaderLocation test = new HeaderLocation();
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setJMenuBar(test.getMenuBar());
f.getContentPane().add(new JScrollPane(test.getTable()));
f.pack();
f.setLocation(200,200);
f.setVisible(true);
}
}
CustomCellEditor.java
public class CustomCellEditor extends AbstractCellEditor implements TableCellEditor{
private JComponent component = new JLabel();
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
System.out.println(row + "," + column);
//if(getClickCountToStart() == 2)
//{
try{
table.clearSelection();
table.setColumnSelectionAllowed(false);
table.setRowSelectionAllowed(false);
}
catch(Exception e)
{
System.out.println("Exception::->" + e.getMessage());
}
//}
// Configure the component with the specified value
component.setOpaque(isSelected);
((JLabel)component).setText((String)value);
component.setForeground(table.getSelectionForeground());
component.setBackground(table.getSelectionBackground());
component.setEnabled(false);
// Return the configured component
return component;
}
@Override
public Object getCellEditorValue() {
// TODO Auto-generated method stub
return ((JLabel)component).getText();
}
}
如果有任何与此相关的帮助,我将不胜感激。
最佳答案
new JTable( model )
{
public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
{
Component c = super.prepareRenderer(renderer, row, column);
// Color row based on a cell value
if (isRowSelected(row)){ //When A row is selected
c.setBackground(getBackground());//Set Background
c.setForeground(color.RED);
}
return c;
}
// Use if(!isRowSelected(row)){} if want to change non-selected row color or background
}
关于java - 如何在表格单元格编辑器中给 JTable 单元格选择背景和前景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20471832/
我已经多次看到我的问题被问到,但我从未看到我期望的答案。我已经在 JTable 中输入了数据库的元素,并且我希望能够通过一些 JButtons 删除/添加元素。问题是当我添加/删除时,修改在数据库
我正在使用 JTable 做一个项目,我想让我的表格单元格可编辑。我用过, public boolean isCellEditable(int row, int column) {
我正在编写一个应用程序包,其中包含一个主类,其中主方法与GUI类分开,GUI类包含一个带有jtabbedpane的jframe,它有两个选项卡,第一个选项卡包含一个jtable,称为jtable1,第
我制作了一个表格来将 Arraylist 中的数据加粗,但如果我删除该数据,我会希望该表格更新并取消对 Arraylist 中加粗的单元格的粗体显示。我该怎么做呢?或从另一个类关闭该类的实例 最佳答案
如果我的 JTable 的列未按字母顺序排列,我可以使用 getSelectedRows() 并毫无问题地获取它们的行的值。但是,如果用户单击列名并且行在该列中按字母顺序排列,则 getSelecte
我有一个 JTable,用户可以在其中在单元格中输入数据。然后有一个“保存”按钮,用于收集表格数据,将其格式化为 csv,并将其保存到文件中。 但是,如果用户将最后编辑的单元格保留在选定状态,并单击“
我编写了下面的代码,以便在当前 JTable 上进行选择时创建一个新的 JTable: makeTbale.addActionListener(new ActionListener() { pub
我正在使用 Swing 编写 Java 应用程序。我有两个表,我必须将内容从一个表复制到另一个表(复制)。问题是,如果我清除目标表行,那么我的源表行也会被删除。 如果我按 CopyAll,那么我会将
我一直致力于JTable,我的项目: 从数据库读取数据(我完成了这个任务并能够在JTable中显示)。 然后将数据按子组显示并保存到文件(文本/Excel)中。 我有 JTable 的基本知识,并且使
我有以下类(class): public class customer_master extends javax.swing.JInternalFrame { Connection con =
您好,我是 JAVA 的新手,在学习时正在开发 GUI。我创建了一个带有 ScrollPane 和 JTable 的 JFrame。当我增加 2 列以上时,第一行下方的数据不会显示。 此外,当我的 J
我正在进行项目的最后一部分,这是我遇到的最后问题之一。这部分用于编辑预订,即更改为特定预订预订的房间。我有 2 个 JTable,其中一个有可用房间,另一个有已预订的房间。两者都有单独的 Defaul
我有 2 个 JTable,我需要从表 2 中复制特定列(包括该列中的所有数据)并将其添加到表 1 中的下一个空闲列中。有人知道执行此操作的最佳方法吗? 谢谢 最佳答案 DefaultTableMod
美好的一天!我在 Jtable 方面遇到了困难。我已经阅读和浏览了各种教程,但我不太明白它的要点。我的问题是,我必须从 jtable (jTable1) 中选择包含 (ClientID、LastNam
我的 SERVER 表单上有一个 JTable,它是从 MySQL 数据库填充的,在构造函数中编码: String sql = "SELECT * from fiekorari"; t
我在我的项目上工作,我需要将一行从 JTable 复制到另一个 JTable,第二个 JTable 应该只是单行表。我为第一个 JTable 创建了 mouselistener,双击它应该复制行并将其
我有这段代码可以完全按预期工作 package com.grantbroadwater.signInAssistant.view; import java.awt.BorderLayout; impo
我有一个列表人员(在 jTable 中)并想将其导出到 excel 文件我需要每个人转到单独的工作表所以我需要拆分原始 jTable,但我不知道如何? 这就是我想做的? public void exp
我有一个包含 7 列和 2 行的 JTable。在我的 JTable 下方,我有一个 JTextField。当我在 JTextField 中输入内容时,我可以很容易地得到我输入的内容:String l
我正在尝试将一个 JTable 嵌套在另一个 JTable 的列中(使用 CellRenderer)。 示例(错误)输出: 为什么下面的例子没有输出表中表? import java.awt.Compo
我是一名优秀的程序员,十分优秀!