Sometimes while programming we may need to check and show the value of JTable Cell in click event.
Here, in the given example, I did the coding in such a way that while clicking on a cell of JTable
It will show the value of that JTable cell in MessageDialog Box.
Code Example:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.*;
class SimpleTableTest extends JFrame
{
private JPanel topPanel ;
private JTable table;
private JScrollPane scrollPane;
private String[] columnNames= new String[3];
private String[][] dataValues=new String[3][3] ;
Continue reading “JTable Cell Click Event: Click on the JTable Cell and show the Value of that cell.”