Sfoglia il codice sorgente

added client methods

master
MrTob 4 anni fa
parent
commit
0414198a8d
1 ha cambiato i file con 17 aggiunte e 0 eliminazioni
  1. +17
    -0
      src/xyz/nextn/Client.java

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

@@ -1,6 +1,23 @@
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);
}
}

Caricamento…
Annulla
Salva