Socket s = new Socket("host", port);
OutputStream out = s.getOutputStream();
out.write(dati);
out.close();
s.close();
la struttura č questa
devi solo adattarla alle tue esigenze
Socket s = new Socket("host", port);
OutputStream out = s.getOutputStream();
out.write(dati);
out.close();
s.close();
la struttura č questa
devi solo adattarla alle tue esigenze