Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- import java.net.Socket;
- import java.util.Scanner;
- import java.util.concurrent.*;
- public class Client {
- public static void main(String[] args) {
- try {
- System.out.println("Klientot se vklucuva");
- Socket socket = new Socket("localhost", 1234);
- }
- catch (IOException io) {
- io.printStackTrace();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement