public abstract class FileURL extends Object
This class defines a static method that can be used to construct an appropriate file: URL from parts. It's defined here so that it can be reused throught the resolver.
(Yes, I'd rather have called this class FileURI, but given that a jave.net.URL is returned, it seemed...even more confusing.)
| Modifier | Constructor and Description |
|---|---|
protected |
FileURL() |
| Modifier and Type | Method and Description |
|---|---|
static URL |
makeURL(String pathname)
Construct a file: URL for a path name.
|
public static URL makeURL(String pathname) throws MalformedURLException
URLs in the file: scheme can be constructed for paths on the local file system. Several possibilities need to be considered:
This method is declared static so that other classes can use it directly.
pathname - The path name component for which to construct a URL.MalformedURLException - if the pathname can't be turned into
a proper URL.Copyright © 2005–2017 Oracle Corporation. All rights reserved.