| 
 | Oracle Fusion Middleware Java API Reference for Oracle Extension SDK 11g Release 2 (11.1.2.4.0) E17493-05 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectoracle.ide.net.URLFactory
public final class URLFactory
This class contains methods which create new instances of
  URL.  In order for URLs to be used effectively as
  keys in a hashtable, the URLs must be created in a very consistent
  manner.  Therefore, when creating a new instance of URL, it
  is strongly recommended that you use one of the methods in this class
  rather than calling the URL constructor directly.  This will
  help prevent subtle bugs that can come up when two URL
  instances that should be equal aren't equal (resulting in caching
  bugs) because of a difference in some detail of the URL that affects
  the result of the Object.equals(Object) method but doesn't
  affect the location pointed to by the URL (which means that
  code other than the caching will actually continue to work).
  Additionally, by using the methods in this class to create instances
  of URL, dependencies on URL can be tracked more
  easily.
| Method Summary | |
|---|---|
| static java.net.URL | copyURL(java.net.URL url)This method returns a new instance of URL that is an exact copy of the specified URL in terms of the protocol, user info, host, port, path, query, and ref. | 
| static java.net.URL | encodeURL(java.net.URL url)Encodes the specified URL into another URL instance in which the parts of the URL are encoded for use with a browser, HTTP server, or opening streams based on an URL. | 
| static java.net.URL | encodeURL(java.net.URL url,
          java.lang.String encoding) | 
| static java.net.URL | newDirURL(java.io.File dir)Creates a new URLwith the "file" protocol that is for the
  specified directory. | 
| static java.net.URL | newDirURL(java.lang.String dirPath)Creates a new URLwith the "file" protocol that is for the
  specified directory. | 
| static java.net.URL | newDirURL(java.lang.String protocol,
          java.lang.String dirPath)Creates a new URLthat is the combination of the
  specifiedprotocoland the directory path. | 
| static java.net.URL | newDirURL(java.net.URL baseURL,
          java.lang.String relativeSpec)Creates a new URLthat is the combination of the
  specified baseURLand the relative spec string. | 
| static java.net.URL | newFileURL(java.io.File file)This method converts a Fileinstance into anURLinstance using an algorithm that is consistent with the other
  factory methods inURLFactory. | 
| static java.net.URL | newFileURL(java.lang.String filePath)Creates a new URLusing the "file" protocol. | 
| static java.net.URL | newIdeURL(java.lang.String protocol,
          java.net.URL url)Creates a new URLwhere the specifiedurlprotocol
  is postfixed to the specifiedprotocol. | 
| static java.net.URL | newJarURL(java.io.File archiveFile,
          java.lang.String entryName)Builds an URLusing the "jar" protocol based
  on the specified archiveFileand the entry name passed
  in. | 
| static java.net.URL | newJarURL(java.net.URL archiveURL,
          java.lang.String entryName)Builds an URLusing the "jar" protocol based
  on the specified archiveURLand the entry name passed in. | 
| static java.net.URL | newUniqueURL(java.net.URL baseURL,
             NameGenerator nameGen)Creates a new unique URL using the protocol of the specified baseURL. | 
| static java.net.URL | newURL(java.lang.String urlSpec) | 
| static java.net.URL | newURL(java.lang.String urlSpec,
       boolean forceDir,
       boolean assumeFile) | 
| static java.net.URL | newURL(java.lang.String protocol,
       java.lang.String path)Standard way of specifying a protocol with a file path. | 
| static java.net.URL | newURL(java.lang.String protocol,
       java.lang.String userinfo,
       java.lang.String host,
       int port,
       java.lang.String path,
       java.lang.String query,
       java.lang.String ref)Creates a new URLwhose parts have the exact values that
  are specified. | 
| static java.net.URL | newURL(java.net.URL baseURL,
       java.lang.String relativeSpec)Creates a new URLthat is the combination of the
  specified baseURLand the relative spec string. | 
| static java.net.URL | replaceHostPart(java.net.URL url,
                java.lang.String newHost)Returns a new URLthat is identical to the specifiedURLexcept that the host part of theURLhas been replaced with the specifiednewHost. | 
| static java.net.URL | replacePathPart(java.net.URL url,
                java.lang.String newPath)Returns a new URLthat is identical to the specifiedURLexcept that the path part ofURLhas been
  replaced with the specifiednewPath. | 
| static java.net.URL | replacePortPart(java.net.URL url,
                int newPort)Returns a new URLthat is identical to the specifiedURLexcept that the port part of theURLhas been replaced with the specifiednewPort. | 
| static java.net.URL | replaceProtocolPart(java.net.URL url,
                    java.lang.String newProtocol)Returns a new URLthat is identical to the specifiedURLexcept that the protocol part of theURLhas been replaced with the specifiednewProtocol. | 
| static java.net.URL | replaceQueryPart(java.net.URL url,
                 java.lang.String newQuery)Returns a new URLthat is identical to the specifiedURLexcept that the query part of theURLhas been replaced with the specifiednewQuery. | 
| static java.net.URL | replaceRefPart(java.net.URL url,
               java.lang.String newRef)Returns a new URLthat is identical to the specifiedURLexcept that the reference part of theURLhas been replaced with the specifiednewRef. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Method Detail | 
|---|
public static java.net.URL copyURL(java.net.URL url)
URLStreamHandler that is assigned by the URL
  class.
  In general, URLs are immutable, so it not normally
  necessary to create a copy of an URL.  However, under unusual
  circumstances, it may be necessary to "refresh" an URL so that
  its associated stream handler is updated to use the currently
  registered stream handler.  This is necessary in situations where
  a default stream handler is associated with an URL during the
  IDE's startup sequence before the custom stream handler for the
  protocol is registered by the owning addin.
Non-sanitizing.
public static java.net.URL newURL(java.net.URL baseURL,
                                  java.lang.String relativeSpec)
URL that is the combination of the
  specified base URL and the relative spec string.  The
  base URL is treated as a directory, whether or not the
  URL ends with the "/" character, and the relative spec
  is always treated as relative, even if it begins with a "/".Non-sanitizing.
baseURL - the URL of a directory. Must not be null.relativeSpec - a relative path from the baseURL directory.
    Must not be null.
public static java.net.URL newDirURL(java.net.URL baseURL,
                                     java.lang.String relativeSpec)
URL that is the combination of the
  specified base URL and the relative spec string.  The
  base URL is treated as a directory whether or not it
  ends with the "/" character.  The returned URL will
  return with the "/" character in the path part.Non-sanitizing.
public static java.net.URL newURL(java.lang.String protocol,
                                  java.lang.String path)
URL verbatim, without any changes to
  the file separator character or any other characters.    For
  an URL whose protocol is "file", the
  newFileURL(String) factory method should be used instead.
  Non-sanitizing.
public static java.net.URL newDirURL(java.lang.String protocol,
                                     java.lang.String dirPath)
URL that is the combination of the
  specified protocol and the directory path.  The directory
  path is used in the URL verbatim, without any changes to
  the file separator character or any other characters.
  The returned URL will return with the "/" character in the
  path part.Non-sanitizing.
public static java.net.URL newUniqueURL(java.net.URL baseURL,
                                        NameGenerator nameGen)
baseURL. The nameGen object is called to
  generate a unique name that will be appended to the base url.
  Non-sanitizing.
public static java.net.URL replaceProtocolPart(java.net.URL url,
                                               java.lang.String newProtocol)
URL that is identical to the specified
  URL except that the protocol part of the URL
  has been replaced with the specified newProtocol.Non-sanitizing.
public static java.net.URL replacePortPart(java.net.URL url,
                                           int newPort)
URL that is identical to the specified
  URL except that the port part of the URL
  has been replaced with the specified newPort.Non-sanitizing.
public static java.net.URL replaceHostPart(java.net.URL url,
                                           java.lang.String newHost)
URL that is identical to the specified
  URL except that the host part of the URL
  has been replaced with the specified newHost.Non-sanitizing.
public static java.net.URL replacePathPart(java.net.URL url,
                                           java.lang.String newPath)
URL that is identical to the specified
  URL except that the path part of URL has been
  replaced with the specified newPath.Non-sanitizing.
public static java.net.URL replaceRefPart(java.net.URL url,
                                          java.lang.String newRef)
URL that is identical to the specified
  URL except that the reference part of the URL
  has been replaced with the specified newRef.Non-sanitizing.
public static java.net.URL replaceQueryPart(java.net.URL url,
                                            java.lang.String newQuery)
URL that is identical to the specified
  URL except that the query part of the URL
  has been replaced with the specified newQuery.Non-sanitizing.
public static java.net.URL encodeURL(java.net.URL url)
public static java.net.URL encodeURL(java.net.URL url,
                                     java.lang.String encoding)
public static java.net.URL newURL(java.lang.String urlSpec)
public static java.net.URL newURL(java.lang.String urlSpec,
                                  boolean forceDir,
                                  boolean assumeFile)
public static java.net.URL newFileURL(java.lang.String filePath)
URL using the "file" protocol.
  The specified filePath can be expressed in the
  notation of the platform that the Java VM is currently running on,
  or it can be expressed using the forward slash character ("/") as
  its file separator character, which is the standard file separator
  for URLs.  Note that technically, the forward slash
  character is the only officially recognized hierarchy separator
  character for an URL (see
  RFC 2396).Sanitizing.
public static java.net.URL newFileURL(java.io.File file)
File instance into an URL
  instance using an algorithm that is consistent with the other
  factory methods in URLFactory.Sanitizing.
URL corresponding to the given File.
  The URL is produced using a mechanism that ensures
  uniformity of the URL format across platforms.public static java.net.URL newDirURL(java.lang.String dirPath)
URL with the "file" protocol that is for the
  specified directory.  Leading and trailing "/" characters are
  added if they are missing.  If the specified dirPath
  is null, then the returned URL is
  null.Sanitizing.
public static java.net.URL newDirURL(java.io.File dir)
URL with the "file" protocol that is for the
  specified directory.  Leading and trailing "/" characters are
  added if they are missing.  This method does not check whether the
  specified File is actually a directory on disk; it just
  assumes that it is.  If the specified dirPath is
  null, then the returned URL is
  null.Sanitizing.
public static java.net.URL newIdeURL(java.lang.String protocol,
                                     java.net.URL url)
URL where the specified url protocol
  is postfixed to the specified protocol.
  The specified protocol must start with "ide.", otherwise,
  a null URL is returned.
public static java.net.URL newJarURL(java.io.File archiveFile,
                                     java.lang.String entryName)
URL using the "jar" protocol based
  on the specified archive File and the entry name passed
  in.  The entry name is relative to the root of the jar file, so
  it should not begin with a slash.  The entry name may be the
  empty string or null, which means that the returned URL
  should represent the jar file itself.
  Sanitizing for archiveFile; non-sanitizing for entryName.
public static java.net.URL newJarURL(java.net.URL archiveURL,
                                     java.lang.String entryName)
URL using the "jar" protocol based
  on the specified archive URL and the entry name passed in.
  The entry name is relative to the root of the jar file, so it
  should not begin with a slash.  The entry name may be the empty
  string or null, which means that the returned URL
  should represent the jar file itself.Non-sanitizing for both archiveURL and entryName.
public static java.net.URL newURL(java.lang.String protocol,
                                  java.lang.String userinfo,
                                  java.lang.String host,
                                  int port,
                                  java.lang.String path,
                                  java.lang.String query,
                                  java.lang.String ref)
URL whose parts have the exact values that
  are specified.  In general, you should avoid calling this
  method directly.
  This method is the ultimate place where all of the other
  URLFactory methods end up when creating an
  URL.
  Non-sanitizing.
| 
 | Oracle Fusion Middleware Java API Reference for Oracle Extension SDK 11g Release 2 (11.1.2.4.0) E17493-05 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||