Creating a URL with a single string. : URL « Network Protocol « Java






Creating a URL with a single string.

      
import java.net.URL;

public class Main {
  public static void main(String[] argv) throws Exception {

    URL url = new URL("http://hostname:80/index.html");
  }
}

   
    
    
    
    
    
  








Related examples in the same category

1.Creating a URL With components
2.Converting Between a Filename Path and a URL
3.URL Constructor Test
4.URL Encode Test
5.Get URL Content
6.Get URL Parts
7.Read from a URL
8.Convert a URL to a URI
9.Converting Between a URL and a URI
10.Convert an absolute URI to a URL
11.URL Equality
12.Parsing a URL
13.URL Request
14.URL Get
15.A URL Retrieval Example
16.URL Reader
17.URL Connection ReaderURL Connection Reader
18.Using URLConnection
19.Parse URLParse URL
20.Resolve a relative URL
21.sends e-mail using a mailto: URLsends e-mail using a mailto: URL
22.Convert the absolute URI to a URL object
23.Convert URI to URL
24.Get parts of a url
25.Checks, whether the URL uses a file based protocol.
26.Add Parameter to URL
27.Returns the anchor value of the given URL
28.Extracts the file name from the URL.
29.Creates a relative url by stripping the common parts of the the url.
30.Checks, whether the URL points to the same service. A service is equal if the protocol, host and port are equal.
31.Extracts the base URL from the given URL by stripping the query and anchor part.
32.Returns true if the URL represents a path, and false otherwise.
33.Parse Port
34.Parse Host
35.Given a URL check if its a jar url(jar:!/archive) and if it is, extract the archive entry into the given dest directory and return a file URL to its location
36.check the validity of url pattern according to the spec.
37.A collection of File, URL and filename utility methods
38.Build Relative URL Path
39.Checks that the protocol://host:port part of two URLs are equal
40.Create valid URL from a system id
41.Extract URL File Name
42.Extract the URL page name from the given path
43.Get Domain Name
44.Get Locale From String
45.Get URL Last Modified
46.Get the name of the parent of the given URL path
47.Get the parent of the given URL path
48.Has URLContent Changed
49.Is URL a local file
50.Normalize an URL
51.Normalizes an URL
52.Resolve a relative URL string against an absolute URL string
53.ResourceBundle String manager
54.Save URL contents to a file
55.URL Path: standardize the creation of mutation of path-like structures
56.Utility class for building URLs
57.Add Default Port to a URL If Missing
58.Get Relative Path To URL
59.Download from a URL and save to a file