Java Socket.getChannel()

Syntax

Socket.getChannel() has the following syntax.

public SocketChannel getChannel()

Example

In the following code shows how to use Socket.getChannel() method.


// www. j a  v  a 2  s.  c  o  m

import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
import java.nio.channels.SocketChannel;

public class Main {
  public static void main(String args[]) throws Exception {
    Socket s = new Socket("internic.net", 43);
    InputStream in = s.getInputStream();
    OutputStream out = s.getOutputStream();
    String str = "asdfasdfasdf\n";
    byte buf[] = str.getBytes();
    out.write(buf);
    int c;
    while ((c = in.read()) != -1) {
      System.out.print((char) c);
    }
    
    SocketChannel socketChannel = s.getChannel();
    System.out.println(socketChannel.getLocalAddress());

    
    s.close();
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder