Java TCP Programming
Java TCP Programming
Programming
Network Programming
2 2
PORT
catch(UnknownHostException ue) {
System.out.ptintln(“Trouble: “ + ue.getMessage());
}
catch(IOException ioe) {
System.out.ptintln(“Trouble: “ + ioe.getMessage());
}
catch(SecurityException se) {
System.out.ptintln(“Trouble: “ + se.getMessage());
}
}
}
Reading / Writing Socket
The Socket class provides two methods, one
for obtaining an input stream for reading
bytes and one for obtaining an output stream
for writing byte-stream to the output stream.