[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...delete multiple rows in jtable

<< Back to: Java Programmers FAQ

Question by babu
Submitted on 6/7/2004
Related FAQ: Java Programmers FAQ
Rating: Rate this question: Vote
how to delete multiple rows in jtable


Answer by jram123
Submitted on 1/3/2005
Rating: Not yet rated Rate this answer: Vote
    

 

Answer by andrew
Submitted on 4/7/2005
Rating: Not yet rated Rate this answer: Vote
Write a method in the TableModel to access the internal data structure. For example, if this data structure is an ArrayList called lines, the method should be as:

public void removeLines(int[] rows) {
   if (rows!=null) {
      for (int i=rows.length-1; i>=0; i--) {
         lines.remove(rows[i]);
      }
   }
   fireTableRowsDeleted(0, rows.length);
}

The deletion must be countdown to avoid the effect of row indexes changes.

 

Answer by asdsf
Submitted on 6/7/2006
Rating: Not yet rated Rate this answer: Vote
i dont know

 

Answer by vinhp
Submitted on 4/19/2007
Rating: Not yet rated Rate this answer: Vote
table_test is your jtable
tabmodel_test is the table model for it   (Type-DefaultTableModel)

int[] row = table_test.getSelectedRows();  for (int i = row.length; i > 0; i--)
{
   tabmodel_test.removeRow(row[i-1]);
}

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: Java Programmers FAQ


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.