Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Exp12_St1:

import java.net.*;
public class Exp12_StudAct1
{
public static void main(String args[])throws MalformedURLException
{
URL netAddress=new URL("http://www.msbte.com");
System.out.println("Protocol:"+netAddress.getProtocol());
System.out.println("Port:"+netAddress.getPort());
System.out.println("Host:"+netAddress.getHost());
System.out.println("File:"+netAddress.getFile());
}
}

Output:

You might also like