leonlu1983
Results
1
comments of
leonlu1983
public class Client { ReliableSocket rs; public Client() throws IOException { rs = new ReliableSocket(); rs.connect(new InetSocketAddress("127.0.0.1", 3033)); String message = "Hello"; byte[] sendData = message.getBytes(); OutputStream os = rs.getOutputStream();...