After establishing a connection you may read data from the server by getting the java.io.InputStream associated with the connection. To get the input stream invoke the IpClient#getInputStream method.
Example
// create new IpClient instance
IpClient client = new IpClient("www.yahoo.com",80);
// establish connection
client.connect();
// get output stream
OutputStream out = client.getOutputStream();