Recent content by vimal

  1. V

    Why I am receiving null in my output?

    I sorted out the problem,thanks to you guys.. I used the available() and read(byte[], offset,len) at the client side also and it worked .
  2. V

    Why I am receiving null in my output?

    I solved the first problem where I was having null in my output and now I am having another one where I cannot read data sent from my computer to my phone.. New code becomes client public void startApp() { try { // establish a socket connection with remote server...
  3. V

    Why I am receiving null in my output?

    I want to send a message to my computer from my phone using TCP..My computer is the server and my phone is the client. I am able to send a message from my phone to my computer but in the output, I get null characters .. I paste my codes below;; Client :: public void startApp() {...
  4. V

    Why I am receiving null in my output?

    0 down vote favorite I want to send a message to my computer from my phone using TCP..My computer is the server and my phone is the client. I am able to send a message from my phone to my computer but in the...