search
HomeJavajavaTutorialHow to Efficiently Get Selected Rows from a JTable with JCheckBox Row Selection?

How to Efficiently Get Selected Rows from a JTable with JCheckBox Row Selection?

Getting Selected Rows in JTable with Selected Row Tracking

Problem:
Efficiently obtaining selected rows from a JTable with a JCheckBox in the first column for row selection. Sequential traversal becomes inefficient with a large number of rows.

Traditional Approach:
Sequentially iterating through all rows to get selected rows. This approach is problematic when dealing with thousands of rows.

Proposed Approach:
Model-Based Tracking:

  • Update a Set containing the selected row indices whenever the JCheckBox value changes.
  • A listener class on the table model updates the Set based on row selection.

Code Example:

import javax.swing.table.AbstractTableModel;
import java.util.Set;
import java.util.TreeSet;

public class CheckModel extends AbstractTableModel {

    // ...

    private Set<integer> checked = new TreeSet();

    // ...

    @Override
    public void setValueAt(Object aValue, int row, int col) {
        boolean b = (Boolean) aValue;
        rowList.set(row, b);
        if (b) {
            checked.add(row);
        } else {
            checked.remove(row);
        }
        fireTableRowsUpdated(row, row);
    }
}</integer>

Additional Optimization:

  • Use a lightweight data structure, such as a TreeSet, to store the selected row indices for efficient iteration.
  • Consider using a different data structure for storing selected rows if memory consumption becomes an issue.

Benefits of the Model-Based Approach:

  • Constant time access to the selected rows, regardless of the total number of rows.
  • No need for sequential traversal, making the selection retrieval highly efficient.

The above is the detailed content of How to Efficiently Get Selected Rows from a JTable with JCheckBox Row Selection?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools