Example usage for org.apache.commons.net.chargen CharGenTCPClient connect

List of usage examples for org.apache.commons.net.chargen CharGenTCPClient connect

Introduction

In this page you can find the example usage for org.apache.commons.net.chargen CharGenTCPClient connect.

Prototype

public void connect(InetAddress host) throws SocketException, IOException 

Source Link

Document

Opens a Socket connected to a remote host at the current default port and originating from the current host at a system assigned port.

Usage

From source file:examples.chargen.java

public static final void chargenTCP(String host) throws IOException {
    int lines = 100;
    String line;/*  w w w. j a  v a2 s.c  om*/
    CharGenTCPClient client = new CharGenTCPClient();
    BufferedReader chargenInput;

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);
    client.connect(host);
    chargenInput = new BufferedReader(new InputStreamReader(client.getInputStream()));

    // We assume the chargen service outputs lines, but it really doesn't
    // have to, so this code might actually not work if no newlines are
    // present.
    while (lines-- > 0) {
        if ((line = chargenInput.readLine()) == null)
            break;
        System.out.println(line);
    }

    client.disconnect();
}

From source file:examples.unix.chargen.java

public static final void chargenTCP(String host) throws IOException {
    int lines = 100;
    String line;//from  w w w .  j  a  va  2  s .  c  om
    CharGenTCPClient client = new CharGenTCPClient();
    BufferedReader chargenInput;

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);
    client.connect(host);
    chargenInput = new BufferedReader(new InputStreamReader(client.getInputStream()));

    // We assume the chargen service outputs lines, but it really doesn't
    // have to, so this code might actually not work if no newlines are
    // present.
    while (lines-- > 0) {
        if ((line = chargenInput.readLine()) == null) {
            break;
        }
        System.out.println(line);
    }

    client.disconnect();
}

From source file:org.apache.commons.net.examples.unix.chargen.java

public static final void chargenTCP(String host) throws IOException {
    int lines = 100;
    String line;//  w  w  w  . ja  v  a 2  s .  c  o  m
    CharGenTCPClient client = new CharGenTCPClient();
    BufferedReader chargenInput;

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);
    client.connect(host);
    chargenInput = new BufferedReader(new InputStreamReader(client.getInputStream()));

    // We assume the chargen service outputs lines, but it really doesn't
    // have to, so this code might actually not work if no newlines are
    // present.
    while (lines-- > 0) {
        if ((line = chargenInput.readLine()) == null) {
            break;
        }
        System.out.println(line);
    }

    chargenInput.close();
    client.disconnect();
}