Home | History | Annotate | Download | only in utils

Lines Matching defs:uri

27 import org.apache.xml.utils.URI.MalformedURIException;
42 * Get an absolute URI from a given relative URI (local path).
44 * <p>The relative URI is a local filesystem path. The path can be
49 * generate a good absolute URI.</p>
51 * @param localPath The relative URI to resolve
53 * @return Resolved absolute URI
102 * Return true if the systemId denotes an absolute URI .
105 * @return true if the systemId is an an absolute URI
111 * character cannot be used as the first segment of a relative URI path
115 * %REVIEW% Can we assume here that systemId is a valid URI?
179 * the input string to generate a well-formed URI string.
210 * Take a SystemID string and try to turn it into a good absolute URI.
212 * @param systemId A URI string, which may be absolute or relative.
214 * @return The resolved absolute URI
266 * Take a SystemID string and try to turn it into a good absolute URI.
269 * @param base The URI string used as the base for resolving the systemID
271 * @return The resolved absolute URI
272 * @throws TransformerException thrown if the string can't be turned into a URI.
281 URI uri = null;
284 URI baseURI = new URI(absoluteBase);
285 uri = new URI(baseURI, urlString);
292 return replaceChars(uri.toString());