Ver a proveniência

added client methods

master
MrTob há 4 anos
ascendente
cometimento
0414198a8d
1 ficheiros alterados com 17 adições e 0 eliminações
  1. +17
    -0
      src/xyz/nextn/Client.java

+ 17
- 0
src/xyz/nextn/Client.java Ver ficheiro

@@ -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);
}
}

Carregando…
Cancelar
Guardar