Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send multiple byte array from the client and server ?

I was able to send/Receive one byte array from client and send / Receive one byte array from server :

My code is like this :

server :

 Socket sock=null;
  ByteArrayOutputStream input=null;
  OutputStream out=null;
    InputStream in=null;
  try{
      ServerSocket server_sock=new ServerSocket(2972);


    sock=server_sock.accept(); 

   in = 
       sock.getInputStream();
    out=sock.getOutputStream();
    }catch(IOException e){
      System.out.println(e.getMessage());
  }
 String word="";

  //1-Receive

  try{

    ByteArrayOutputStream serverinput=new ByteArrayOutputStream();
 int len=0;
byte[] buf=new byte[1000];
        while ((len = in.read(buf))>=0) {
              serverinput.write(buf, 0, len);

        }

      sock.shutdownInput();

        word=new String(serverinput.toByteArray());
    System.out.println("Client send 1"+word);

    }catch(Exception e){
      System.out.println(e.getMessage());
  }


   String st="Server is a king";
try{ 
   out.write(st.getBytes());

   out.flush();

}catch(Exception e){
      System.out.println(e.getMessage());
  }

client :

 Socket sock=null;
    OutputStream out=null;
    InputStream in=null;


  try{
      sock=new Socket("127.0.0.1",2972);
      }catch(IOException e){
      System.out.println(e.getMessage());
  }


String word="Hellow World"  ;
    try{
    in = 
       sock.getInputStream();
    out=sock.getOutputStream();
    }catch(IOException e){
      System.out.println(e.getMessage());
  }

//1- send
   try{

       System.out.println("Your string is"+word+"converted to byte"+word.getBytes());

    out.write(word.getBytes());
    out.flush();
 sock.shutdownOutput();
    }catch(Exception e){
      System.out.println(e.getMessage());
  }

    try{  ByteArrayOutputStream serverinput=new ByteArrayOutputStream();
 int len=0;
byte[] buf=new byte[1000];
        while ((len = in.read(buf))>=0) {
              serverinput.write(buf, 0, len);


        }
    System.out.println("server send 1 "+new String(serverinput.toByteArray()));
     System.out.println("Your string is"+word+"converted to byte"+word.getBytes());

    }catch(Exception e){
      System.out.println(e.getMessage());
  }

This code is working fine for one submitting from client and server but it does not work when I want to send / receive more byte array ?

It is working only when I use shutdown because both client and server reading and writing to the data.

Therefore, I can not use the socket channel again ... is there is alternative solution? ...that does not lead to deadlock.

share|improve this question

3 Answers

up vote 7 down vote accepted

The problem you have is that you don't currently have any way to say when one byte array ends and the next one starts. (On your "one array" solution, the end of the byte array corresponds to the end of stream.)

The simple way to solve this is as follows, using DataOutputStream and DataInputStream pairs wrapped around the respective socket streams:

  • To send a byte array:

    1. Convert data to bytes.

    2. Send the byte array size using the DataOutputStream.writeInt(int) method.

    3. Send the byte array using DataOutputStream.write(byte[]) method.

  • To receive a byte array:

    1. Receive the byte array size using the DataOutputStream.readInt() method.

    2. Allocate a byte array of the required size.

    3. Receive the bytes into the byte array using the DataOutputStream.read(byte[], int, int) method ... repeatedly until you've gotten all of the bytes.

By sending the size of the byte array at the front, you tell the receiver how many bytes to read. You can repeat this process as many times as you need. The sender can indicate to the receiver that there are no more byte arrays to send by simply closing the socket stream.

Note - this is pseudo-code. I assume that you are capable of turning it into working Java.

Don't forget to insert BufferedInputStreams and BufferedOutputStreams into the respective stream chains ... to reduce system call overheads.

share|improve this answer
It is work ... thanks a lot. – Javalover Apr 29 '11 at 22:44
Nice answer, it works also for me! Thank you. – cabreracanal Oct 4 '11 at 10:21

Try wrapping your socket streams in DataInputStream and DataOutputStream. That should allow you to do what you want.

share|improve this answer
I did but it does not work... – Javalover Apr 29 '11 at 2:54
@Javalover Then you didn't do it correctly and it is very hard for us to help you unless you update the post to reflect what you did. – Fredrik Apr 29 '11 at 4:56

You should really have a look at this tutorial : Reading from and Writing to a Socket

It seems to outline how to read and write to a socket. The reading should be as easy as creating a server socket and listening on the port you expect and then waiting for data.

share|improve this answer
this is not writing or reading by socket , it is transforming the data over the network – Javalover Apr 29 '11 at 2:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.