Calling {
String?host;
int?port;
byte[]?data;
p>
Socket?s=new?Socket(host,port);
OutputStream?out?=?s.getOutputStream();
out.write(data) ;
out.close();
s.close();
}