JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
All about
URL
URLConnection
_ its method and all its interface in one _ program
_ please like share comment
_ thank you
_ ©_Asif Bilakhiya
*/
import java.net.*;
import java.util.*;
import java.io.*;
class Program
{
public static void main(String args[])throws Exception
{
//Thanks for view my code
//url1==any url that you like
String url1="http://www.google.com/";
URL u1=new URL(url1);
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run