Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- import java.net.*;
- public class server {
- public static void main(String[] args) throws IOException{
- ServerSocket ss = new ServerSocket(4999);
- Socket s = ss.accept();
- System.out.println("client connected");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement