Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8426979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:40:38+00:00 2026-06-10T04:40:38+00:00

I have a JTable and DefaultTableModel at class level. First time when I initialize

  • 0

I have a JTable and DefaultTableModel at class level.
First time when I initialize the jTable and Model I add 10 rows.
on Button click I get 3 rows from my database so I have to show only these 3 rows by removing earlier 10 rows.
I do this using tableModel.setDataVector(data, columnNames);
But the main problem is, the table only replaces 3 old rows with new one and still remaining 7 rows are shown as it is.

Can any one help?

Thanks,
Jai

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T04:40:40+00:00Added an answer on June 10, 2026 at 4:40 am

    If I have understood, you want to reconstruct the table with the 3 rows from the database and delete the earlier 10 rows. If that is true then do this,

     public void actionPerformed(ActionEvent e) {
       // If the action is for getting data from DB then do,
       DefaultTableModel dtm = (DefaultTableModel) myTable.getModel();
       // int rowCount = dtm.getRowCount();
       /*
         for (int row = rowCount - 1; row >= 0; row--) {
            dtm.removeRow(row); 
       } */
       // or
       if(dtm.getRowCount() > 0) {
         dtm.setRowCount(0);
       }
    // Add code to get your 3 rows from the database.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JTable with a model instantiated as: TableModel ss = new DefaultTableModel(myArray[][],
I have 2 windows one window shown the JTable Model data, when double click
I have a jTable as from the attached picture Right click on a row
I have a JTable with 5 rows at the time of design. Now i
In Java Swing I have created a JTable which uses a table model class
I have a JTable displaying rows from an SQL database. The table is relatively
I have a jTable with two columns.First column is set as Boolean(for checkbox) and
I have a JTable which I want to have left-click and right-click JPopupMenu on
I have a jTable and a jButton. When clicked, the button's actionPerformed method calls
I have a JTable with a predefined model how to ask the model to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.