Socket s = new Socket(IP, port);
DataInputStream in = new DataInputStream(new BufferedInputStream(s.getInputStream()));
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(s.getOutputStream()));
out.write(xxx);
out.close();
s.close();