Browse Source

added client methods

master
MrTob 4 years ago
parent
commit
0414198a8d
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      src/xyz/nextn/Client.java

+ 17
- 0
src/xyz/nextn/Client.java View File

@@ -1,6 +1,23 @@
package xyz.nextn; package xyz.nextn;




import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.util.Scanner;

public class Client{ 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);
}
} }

Loading…
Cancel
Save