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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:38:36+00:00 2026-05-31T17:38:36+00:00

I am quite a newbie in OOP using java and I’m learning as I

  • 0

I am quite a newbie in OOP using java and I’m learning as I go, much with the help of this community.

I’ve built a program that uses one object for repeating a task which reads from an excel sheet over and over again and extract data from there.

I would like to know what are the best practices to initialize this task over and over again so I wont get out-of-bound indexes on arrays and other variable errors?

Here is the thread code I’m using to refresh the gui (and the reading from file over and over again). As you can see it’s calling some methods from a different class. When this methods are called – the local variables and array indexed are already holding some data from previous iteration:

    public void check() {
        Thread check = new Thread() {
            public void run() {
                for (;;) {
                    EventQueue.invokeLater(new Runnable() {
                        public void run() {
                            // Update GUI here on EventQueue.

                            try {
                                Task.readTasks();
                            } catch (InvalidFormatException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            } catch (IOException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        label.setText("Next Task Is: " + Task.printNextTask);
                        }
                    });

                    try {
                        Thread.sleep(5000);
                    } catch (InterruptedException ie) {
                        break;
                    }
                    if (killcheck)
                        break;

                }
            }
        };
        check.start();
    }

    public void stopChecking() {
        killcheck = true;
    }
}
  • 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-31T17:38:37+00:00Added an answer on May 31, 2026 at 5:38 pm

    Your question is very generic, so I’m afraid my answer is also pretty generic. To help avoid ArrayIndexOutOfBoundsExceptions, use the concise for-each syntax as much as possible on arrays and Iterable objects.

    Maybe you would also find this answer to a question on work queues helpful.

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

Sidebar

Related Questions

I am a C++ newbie, not quite understand the destruction workflow of this program,
I think that this is a newbie type question but I have quite understood
I just want to tell you that I am newbie to OOP and it
I'm learning Prolog from Learn prolog now book. I'm quite newbie in prolog and
I'm still quite a mySQL newbie, so I would like to do this right
I am a newbie in Php and this might be a quite basic question.
Sorry that I am quite a newbie for Django. So, I got a trouble
I am quite newbie in using eclipse cdt. I have a makefile project, and
Java newbie here. I am using a third party library which gives me a
this might be quite a newbie question, but i need to process a certain

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.