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

The Archive Base Latest Questions

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

Android client sends string to server. Server will acknowledge a connection from device, and

  • 0

Android client sends string to server. Server will acknowledge a connection from device, and on the correct port but that is it..What should happen is the string is printed on the server console.

For reference, I’ve created the exact same client, without running it inside an android app and it works fine, so that leads me to believe I’m missing something on the android side of things. Can anyone offer a suggestion as to fix this problem. Many thanks.

Client code:

public class ObjectTestActivity extends Activity {

Button submit;
TextView tv;
private String name = "Hello Android";
private DataOutputStream dos;
private DataInputStream dis;
private final int PORT = 3000;

Button send;
InetAddress host;


@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    send = (Button) findViewById(R.id.send);
    tv = (TextView) findViewById(R.id.tv);


    try{

        host = InetAddress.getLocalHost();
        Socket socket = new Socket("xx.xx.xxx.xxx", PORT);

        dos = new DataOutputStream(socket.getOutputStream());
        dis = new DataInputStream(socket.getInputStream());

    }catch(UnknownHostException e){}
     catch(IOException e){}
}


public void onClick(View view){

    try{
        dos.writeUTF(name);
        dos.flush();
        dis.close();
        dos.close();
    }catch(IOException e){}
}
  • 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-30T18:27:30+00:00Added an answer on May 30, 2026 at 6:27 pm

    What is onClick attached to? Try changing to:

    public class MyActivity extends Activity {
    
      Button submit;
      TextView tv;
      private String name = "Hello Android";
      private DataOutputStream dos;
      private DataInputStream dis;
      private final int PORT = 3000;
    
      Button send;
      InetAddress host;
    
      protected void onCreate(Bundle icicle) {
             super.onCreate(savedInstanceState);
             setContentView(R.layout.main);
    
            send = (Button) findViewById(R.id.send);
            tv = (TextView) findViewById(R.id.tv);
    
    
            try{
    
                host = InetAddress.getLocalHost();
                Socket socket = new Socket("xx.xx.xxx.xxx", PORT);
    
                dos = new DataOutputStream(socket.getOutputStream());
                dis = new DataInputStream(socket.getInputStream());
    
           }catch(UnknownHostException e){}
            catch(IOException e){}
    
    
            send.setOnClickListener(new View.OnClickListener() {
                 public void onClick(View v) {
                     try{
                     dos.writeUTF(name);
                     dos.flush();
                     dis.close();
                     dos.close();
                  }catch(IOException e){}
                 }
             });
         }
     }
    

    For your button onClick event.

    To put it simply: define your buttons onClick method inside of onCreate (send.onCreate(…)).

    This example came from here

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

Sidebar

Related Questions

Im writing a client/server app for android that sends a username and password to
I've successfully connected to XMPP server (from android XMPP client), and I can send
I write client-server application. Client will run on android and server on plain java.
I am using URLConnection Object to send data from my android client to server.
I have a client on Android and server on c#. The client sends messages
I implemented on Android a small application that sends through a socket connection strings
android how to Send a String of data from an android mobile to server
i want to send data from android application to local server (PHP) but it
I have an client server application on Android.And I have to send data from
I have tried to create a android application that sends a serialzed object from

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.