Descripción
Sintaxis
public class Socket extends Object implements Closeable
Constructores
Métodos
- bind()
- close()
- connect()
- getChannel()
- getInetAddress()
- getInputStream()
- getKeepAlive()
- getLocalAddress()
- getLocalPort()
- getLocalSocketAddress()
- getOOBInline()
- getOption()
- getOutputStream()
- getPort()
- getReceiveBufferSize()
- getRemoteSocketAddress()
- getReuseAddress()
- getSendBufferSize()
- getSoLinger()
- getSoTimeout()
- getTcpNoDelay()
- getTrafficClass()
- isBound()
- isClosed()
- isConnected()
- isInputShutdown()
- isOutputShutdown()
- sendUrgentData()
- setKeepAlive()
- setOOBInline()
- setOption()
- setPerformancePreferences()
- setReceiveBufferSize()
- setReuseAddress()
- setSendBufferSize()
- setSocketImplFactory()
- setSoLinger()
- setSoTimeout()
- setTcpNoDelay()
- setTrafficClass()
- shutdownInput()
- shutdownOutput()
- supportedOptions()
- toString()
Ejemplo
String dirWeb = "www.lineadecodigo.com";
int puerto = 80;
try{
Socket s = new Socket(dirWeb, puerto);
if(s.isConnected()){
System.out.println("Conexión establecida con la dirección: " + dirWeb + " a travéz del puerto: " + puerto);
}
}catch(Exception e){
System.err.println("No se pudo establecer conexión con: " + dirWeb + " a travez del puerto: " + puerto);
}
Líneas de Código
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.