Mega Code Archive

 
Categories / Java by API / Java Net
 

New Socket(InetAddress address, int port) throws IOException

import java.net.InetAddress; import java.net.Socket; public class Main {   public static void main(String[] argv) throws Exception {     InetAddress addr = InetAddress.getByName("java.sun.com");     int port = 80;     Socket socket = new Socket(addr, port);   } }