Comunicarea prin conexiuni
In acest model se
stabileste o conexiune TCP între un program client si un serv 343e43d er care furnizeaza
un anumit serviciu.
Structura generala a unui server
bazat pe conexiuni
while (true) catch (IOException e) finally catch (IOException e)
}
}
public SimpleServer() throws IOException finally
}
public static void main(String[] args) throws IOException
Structura generala a unui client
bazat pe conexiuni
import java.net.*; import java.io.*; public class SimpleClient catch (UnknownHostException e) finally }