Searched defs:URL (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DURL.java39 * <h3>Parts of a URL</h3>
40 * A URL is composed of many parts. This class can both parse URL strings into
41 * parts and compose URL strings from parts. For example, consider the parts of
42 * this URL:
77 public final class URL implements Serializable { class in inherits:Serializable
121 * Creates a new URL instance by parsing {@code spec}.
124 * URL.
126 public URL(String spec) throws MalformedURLException { method in class:URL
127 this((URL) nul
138 public URL(URL context, String spec) throws MalformedURLException { method in class:URL
152 public URL(URL context, String spec, URLStreamHandler handler) throws MalformedURLException { method in class:URL
203 public URL(String protocol, String host, String file) throws MalformedURLException { method in class:URL
217 public URL(String protocol, String host, int port, String file) throws MalformedURLException { method in class:URL
233 public URL(String protocol, String host, int port, String file, method in class:URL
[all...]

Completed in 385 milliseconds