package xyz.nextn; import java.io.IOException; import java.net.InetAddress; import java.net.Socket; import java.util.Scanner; public class Client{ private int port; private InetAddress ip; public Client(int port, InetAddress ip) { this.port = port; this.ip = ip; } public void getData() throws IOException { Scanner scn = new Scanner(System.in); InetAddress ip = InetAddress.getByName("localhost"); Socket s = new Socket(ip, port); } }