Ciao a tutti,
spero che qualcuno possa aiuttarmi perché stò diventando matto![]()
Devo trasferire 2 array di 8748 byte da un server a un client tramite socket....
-----------------------------------------------------
byte[] low = new byte[8784];
ServerSocket serverSocket = new ServerSocket(5000);
...
OutputStream out = clientSocket.getOutputStream();
out.write(low,0,low.length);
out.flush();
-----------------------------------------------------
La connessione funziona correttamente, il problema é che non mi manda tutto l'array ma solo in parte! Avete una soluzione a questo problema?
grazie x l'aiuto