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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:27:47+00:00 2026-05-28T14:27:47+00:00

The idea is to start a chat. So I have this properties in my

  • 0

The idea is to start a chat. So I have this properties in my class:

private MulticastSocket so;
private EditText messageBoard;
private InetAddress serverAddress;
private int port;

Then I have this code in the onCreate() method:

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.second);

    // connect to server
    connect();

    // Associate a variable with the Button on the interface
    final Button sendButton = (Button) findViewById(R.id.button2);
    sendButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // when the button is clicked the next screen is loaded
            sendMessage();
        }
    });

}   // end of onCreate

Here is my connect() method:

private void connect() {

    port = 4456;

    // convert the host name to InetAddress
    try {
        serverAddress = InetAddress.getByName("my server address is here");
    } catch (Exception e) {}

    // create socket and start communicating
    try {
        so = new MulticastSocket(port);
        so.joinGroup(serverAddress);
    } catch (IOException e) {}

    // start listening for incoming messages
    new Receiver(so, messageBoard);
}

Everything looks right to me but this is what it says:

01-24 23:33:16.277: W/dalvikvm(569): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
01-24 23:33:16.357: E/AndroidRuntime(569): FATAL EXCEPTION: main
01-24 23:33:16.357: E/AndroidRuntime(569): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.regeduser00x.proj1/com.regeduser00x.proj1.Second}: android.os.NetworkOnMainThreadException
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread.access$600(ActivityThread.java:123)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.os.Handler.dispatchMessage(Handler.java:99)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.os.Looper.loop(Looper.java:137)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread.main(ActivityThread.java:4424)
01-24 23:33:16.357: E/AndroidRuntime(569):  at java.lang.reflect.Method.invokeNative(Native Method)
01-24 23:33:16.357: E/AndroidRuntime(569):  at java.lang.reflect.Method.invoke(Method.java:511)
01-24 23:33:16.357: E/AndroidRuntime(569):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
01-24 23:33:16.357: E/AndroidRuntime(569):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
01-24 23:33:16.357: E/AndroidRuntime(569):  at dalvik.system.NativeStart.main(Native Method)
01-24 23:33:16.357: E/AndroidRuntime(569): Caused by: android.os.NetworkOnMainThreadException
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1099)
01-24 23:33:16.357: E/AndroidRuntime(569):  at java.net.InetAddress.lookupHostByName(InetAddress.java:391)
01-24 23:33:16.357: E/AndroidRuntime(569):  at java.net.InetAddress.getAllByNameImpl(InetAddress.java:242)
01-24 23:33:16.357: E/AndroidRuntime(569):  at java.net.InetAddress.getByName(InetAddress.java:295)
01-24 23:33:16.357: E/AndroidRuntime(569):  at com.regeduser00x.proj1.Second.connect(Second.java:99)
01-24 23:33:16.357: E/AndroidRuntime(569):  at com.regeduser00x.proj1.Second.onCreate(Second.java:38)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.Activity.performCreate(Activity.java:4465)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
01-24 23:33:16.357: E/AndroidRuntime(569):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
01-24 23:33:16.357: E/AndroidRuntime(569):  ... 11 more

That Second.java:99 happens to be serverAddress = InetAddress.getByName("my server address is here"); and line 38 happens to be connect(); What’s the matter with it? I have tested the line with the InetAddress in a small test program and it works perfectly but here something happens.

  • 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-28T14:27:48+00:00Added an answer on May 28, 2026 at 2:27 pm

    this line:

    Caused by: android.os.NetworkOnMainThreadException
    

    Tells you what is going on.

    You are attempting to access a network function on the Main(UI) thread. starting with Honeycomb the system raises an Exception when you do this.

    To fix you just need to move any thing that is touching the network to its own thread.

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

Sidebar

Related Questions

I have no idea where to start with this one. I have a confirmation
I have no idea where to start with this one: I have a database
I have no idea how to start to implement this even though it's probably
Hey guys, I have an idea that I'd like to start implementing that at
Hello everyone i have created a multi threaded chat server that looks like this:
i need to convert this query to C# LINQ but i have no idea
How do I implement a Facebook authorization? I have no idea where to start.
I'm sure this is simple but I have no idea how to do it.
I have completely no idea where to start so I apologise about the lack
I would like to write a method but have no idea where to start

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.