- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道如何解决这个问题:
我有一个带有自定义单元格渲染器的 JTable。在单元格渲染器中,我放置了一个带有网格包布局的 JLabel。
如果我尝试获取 JLabel 在渲染器中的位置,我总是得到 0、0。我之前尝试重新验证 JLabel,但找不到正确的解决方案。
这是自定义渲染器的代码:
public CustomRenderer() {
// set the renderer layout to null
setLayout(new GridBagLayout());
// create the layouts label
layoutsLbl = new JLabel("Layout");
// create a grid bag constraints instance
GridBagConstraints gbc = new GridBagConstraints();
// first column
gbc.gridx = 0;
// first row
gbc.gridy = 0;
// maximum horizontal weight
gbc.weightx = 1;
// anchor to the top left corner
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
// fill horizontally
gbc.fill = GridBagConstraints.HORIZONTAL;
// set the insets
gbc.insets = new Insets(35, 0, 10, 0);
// add the layouts label to the view
add(layoutsLbl, gbc);
}
public String clickCheck() {
// revalidate the layouts label
layoutsLbl.revalidate();
// get the layouts label location
System.out.println("Label location: " + layoutsLbl.getLocation());
}
我知道在某些情况下我可能能够计算出 JLabel 的位置,因为它是固定的,但我想要一个通用的方法,因为我需要它用于渲染器,其中我有很多动态生成的 JLabel。
最终目标是找到每个 JLabel 的位置,以便能够识别哪个 JLabel 已通过附加到表的 MouseListener 单击。我能够找到单击的单元格、单元格中的鼠标位置,因此我需要单元格中的 JLabel 位置来根据鼠标位置对其进行测试。
最佳答案
The final goal is to find the location of each JLabel to be able to identify Blockquote which JLabel has been clicked with a MouseListener attached to the table.
这个问题很容易解决。只需使用这个简单的代码片段即可获取被点击的对象。
this.addMouseListener(new MouseListener() {
@Override
public void mouseClicked(MouseEvent e) {
Component clicked = getComponentAt(e.getPoint());
if(clicked instanceof JLabel){
JLabel myLabel = (JLabel) clicked;
//obviously myLabel is the clicked JLabel
System.out.println("Clicked Label: " + myLabel.getLocation());
}
}
@Override
public void mousePressed(MouseEvent e) {
}
@Override
public void mouseReleased(MouseEvent e) {
}
@Override
public void mouseEntered(MouseEvent e) {
}
@Override
public void mouseExited(MouseEvent e) {
}
});
使用 getLocation()
方法现在将为您提供 JLabel
的真实位置。
UPDATE: Here is the requested complete Example (Using
JTable
instead)
这是我的主要内容:
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setContentPane(new CostumTable());
frame.getContentPane().addMouseListener(new MouseListener() {
@Override
public void mouseClicked(MouseEvent e) {
Component clicked = frame.getContentPane().getComponentAt(e.getPoint());
if(clicked instanceof JLabel){
JLabel myLabel = (JLabel) clicked;
//obviously myLabel is the clicked JLabel
System.out.println("Text of clicked Label: " + myLabel.getText());
}
}
@Override
public void mousePressed(MouseEvent e) {
}
@Override
public void mouseReleased(MouseEvent e) {
}
@Override
public void mouseEntered(MouseEvent e) {
}
@Override
public void mouseExited(MouseEvent e) {
}
});
frame.setSize(200, 500);
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setVisible(true);
}
这将是 CustomRenderer(现在是 CostumTable):
public CostumTable() {
// set the renderer layout to GridBagLayout
setLayout(new GridBagLayout());
// create the layouts label
layoutsLbl = new JLabel("Layout");
// create a grid bag constraints instance
GridBagConstraints gbc = new GridBagConstraints();
// first column
gbc.gridx = 0;
// first row
gbc.gridy = 0;
// maximum horizontal weight
gbc.weightx = 1;
// anchor to the top left corner
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
// fill horizontally
gbc.fill = GridBagConstraints.HORIZONTAL;
// set the insets
gbc.insets = new Insets(35, 0, 10, 0);
// add the layouts label to the view
add(layoutsLbl, gbc);
//Just here to test the MousListener
List<JLabel> testLabel = new ArrayList<>();
for(int i = 0; i < 3; i++) {
testLabel.add(new JLabel("TestLabel number " + i));
gbc.gridx = 0;
gbc.gridy = i + 1;
add(testLabel.get(i), gbc);
}
//
}
public String clickCheck() {
// revalidate the layouts label
layoutsLbl.revalidate();
// get the layouts label location
System.out.println("Label location: " + layoutsLbl.getLocation());
return null; //I dont know what you want to return
}
关于java - JTable:获取单元格内的对象位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48297617/
我已经多次看到我的问题被问到,但我从未看到我期望的答案。我已经在 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
我是一名优秀的程序员,十分优秀!