Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package th1_ltm;

import java.util.*;
import java.net.*;
import java.io.*;
/**
*
* @author AD
*/
public class Client {
public static void main(String[] args) throws IOException {
Socket client= new Socket("127.0.0.1",8888);
DataInputStream din = new DataInputStream(client.getInputStream());
DataOutputStream dout = new DataOutputStream(client.getOutputStream());
Scanner sc = new Scanner(System.in);

}
}

You might also like