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

  • SEARCH
  • Home
  • 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 560369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:20:09+00:00 2026-05-13T12:20:09+00:00

I’m working on a Swing based project that will display large amounts of data

  • 0

I’m working on a Swing based project that will display large amounts of data using a Table component. I’m trying to decide what are the best alternatives in terms of efficiency and management of the parsed data. The master table can be manipulated (i.e. views of the complete data can be created, or removed),so the complete data needs to be hold in memory

I know these kind of problems can have many different solutions. I thought of creating a class representing one entry on the log, with properties representing each ‘property’ on it. I can possible use Comparator objects to sort based on these fields, and use these objects to build a table component.
This might not be a good idea if the total number of entries is in the order of 5000-10000 lines

Any suggestion on good practices to manage this kind of data and perform manipulations to it to render a graphic component are received.

Not many details have been provided, so I’m basically looking for general ideas on how to approach the problem.

  • 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-05-13T12:20:09+00:00Added an answer on May 13, 2026 at 12:20 pm

    I’m presuming that the files are all parsed and an in memory representation of parsed data
    is available when the table is displayed. You need to have your own tablemodel which gets data from the parsed files.

    Something like below can be your table model:

    class MyTableModel extends AbstractTableModel {
        private final List<String> columnNames;
        private List<RowData>      rows;
    
        MyTableModel() {
            columnNames = new ArrayList<String>();
            columnNames.add("Name");
            //...
            rows = new ArrayList<RowData>();
        }
    
        // populate the table data model with a List
        // that contains parsed data, each list element 
        // could correspond to a record or line (say)
        void setCoreData(final List<RowData> data) {
            this.rows = data;
        }
    
        public Object getValueAt(final int pRow, final int pCol) {
            if (getColumnName(pCol).equals("Name")) {
                return rows.get(pRow).getName();
            }
            //... .
    
        }
    
    // corresponds to the rows of table instances of which 
    // are created by output of parsing
    private class RowData {
        private String name;
    
        public Object getName() {
            return name;
        }
    }
    
    // table instantitaion can be as below (say)
    JTable myTable = new JTable(new MyTableModel());
    

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.