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 6183155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:19:07+00:00 2026-05-24T01:19:07+00:00

My question is, In my code I have made a JTable in main class.

  • 0

My question is, In my code I have made a JTable in main class. Now I am making a thread To do some task and to collect some data which i want to fill in the JTable as soon as the thread collects it. This thread should run for a while. So Can I access the JTable of main class through the Thread created.

EDIT: I’m providing my code here.

Test.java

package test;


import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.AbstractTableModel;
import java.awt.*;

public class Test implements ActionListener {

 Thread t;
 JTable table;
 JScrollPane scrollPane;
 JButton b;
 JFrame frame;


 public void body() {

  frame = new JFrame("TableDemo");
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  frame.setLayout(new FlowLayout());

  table = new JTable(new MyTableModel());
  table.setPreferredScrollableViewportSize(new Dimension(500, 70));
  table.setFillsViewportHeight(true);

  scrollPane = new JScrollPane(table);
  frame.add(scrollPane);

  b = new JButton("OK");
  frame.add(b);

  thread a = new thread(new MyTableModel());
  t = new Thread(a);

  frame.pack();
  frame.setVisible(true);

  b.addActionListener(this);

 }


 public static void main(String[] args) {

  new Test().body();

 }


 @Override
 public void actionPerformed(ActionEvent e) {

  t.start();

 }
}


class MyTableModel extends AbstractTableModel {

 private String[] columnNames = {
  "First Name",
  "Last Name",
  "Sport"
 };

 private Object[][] data = {
  {
   "a",
   "a",
   "a"
  }
 };

 @Override
 public int getColumnCount() {
  return columnNames.length;
 }

 public int getRowCount() {
  return data.length;
 }

 public String getColumnName(int col) {
  return columnNames[col];
 }

 public Object getValueAt(int row, int col) {
  return data[row][col];
 }
 public Class getColumnClass(int c) {
  return getValueAt(0, c).getClass();
 }
 public boolean isCellEditable(int row, int col) {
  if (col < 3) {
   return false;
  } else {
   return true;
  }
 }
 public void setValueAt(Object value, int row, int col) {
  data[row][col] = value;
  fireTableCellUpdated(row, col);
 }

}

thread.java

package test;

public class thread implements Runnable {

  MyTableModel model;

    thread(MyTableModel model){
        this.model = model;
    }

    @Override
    public void run() {
        Object aa = "new value";
        this.model.setValueAt(aa, 0, 0);
        System.out.println(this.model.getValueAt(0, 0));
    }       

}

What I actually want is The value at 0,0 on the display screen of the JTable should Change from “a” to “new value”.

Please give some help.

  • 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-24T01:19:07+00:00Added an answer on May 24, 2026 at 1:19 am

    When you create a thread you actually create a Runnable class, either by extending Thread or implementing Runnable. So you will have your own class such as this

     MyClass implements Runnable {
         public void run() { ... your work here ... }
     }
    

    Simply pass any objects you like to the constructor of this class

     MyClass implements Runnable {
    
    
         JTable m_jtable;
    
         public MyClass( JTable theTable ) { m_jtable = theTable; }
    
         public void run() { do things with m_jtable }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code which populates a hashtable with a question as the key
Following on from this question I now have code that can attach to a
I have a question concerning this code which I want to run on QNX:
i have what i hope is a quick question about some code i am
This is a really basic question but... I have some code like this var
Following the directions at this question , I have some code running to extract
I'm not sure if I asked the question correctly. I have some code I
here is a simple question. I have a 'ul' which i have made sortable
I have some code, in which parts are pulled from several other external repositories
My question is rather simple I have made many changes in our project which

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.