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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:24:49+00:00 2026-05-11T17:24:49+00:00

I have read in many places that network connection in a j2me app should

  • 0

I have read in many places that network connection in a j2me app should be done in a separate thread. Is this a necessity or a good to have?

I am asking this because I could not find anywhere written that this must be done in a separate thread. Also, when I wrote a simple app to fetch an image over a network and display it on screen (without using a thread) it did not work. When I changed the same to use a separate thread it worked. I am not sure whether it worked just because I changed it to a separate thread, as I had done many other changes to the code also.

Can someone please confirm?

Edit:
If running in a separate thread is not a necessity, can someone please tell me why the below simple piece of code does not work?

It comes to a stage where the emulator asks “Is it ok to connect to net”. Irrespective of whether I press an “yes” or a “no” the screen does not change.


public class Moo extends MIDlet {

    protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
        // TODO Auto-generated method stub

    }

    protected void pauseApp() {
    }

    protected void startApp() throws MIDletStateChangeException {
        Display display = Display.getDisplay(this);
        MyCanvas myCanvas = new MyCanvas();
        display.setCurrent(myCanvas);
        myCanvas.repaint();

    }

    class MyCanvas extends Canvas {

        protected void paint(Graphics graphics) {
            try {
                Image bgImage = Image.createImage(getWidth(), getHeight());

                HttpConnection httpConnection = (HttpConnection) Connector
                        .open("https://stackoverflow.com/content/img/so/logo.png");
                Image image = Image.createImage(httpConnection
                        .openInputStream());
                bgImage.getGraphics().drawImage(image, 0, 0, 0);
                httpConnection.close();

                graphics.drawImage(bgImage, 0, 0, 0);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

}


Edit: I got my answer for the code here.

Edit: I spawned off a separate question of this here.

  • 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-11T17:24:49+00:00Added an answer on May 11, 2026 at 5:24 pm

    The problem is that you are trying to do work within the thread that is responsible for running the UI. If you do not use a separate thread, then that UI thread is waiting while you do your work and can’t process any of your other UI updates! so yes you really should not do any significant work in event handlers since you need to return control quickly there.

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

Sidebar

Related Questions

I have read in many places that WPF combo does not support autocomplete but
I have read in many places that unsigned integer overflow is well-defined in C
I've read in many places that you should always initialize Objective-C objects like so:
I have read so many places is that if your code is not test-able
I have read many answers regarding this still i am getting confused if i
I have read many questions about Android, J2ME and RecordStore , but I still
I have read the posts I found here and in many other places -
I have read in many places about references: Reference is like a const pointer
I have read many answers to questions about dynamically resizing NSWindows and nothing has
I have read many question about improving the performance of C++ and C code

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.