Home | History | Annotate | Download | only in utils

Lines Matching defs:uri

27 import org.apache.xml.serializer.utils.URI.MalformedURIException;
49 * Get an absolute URI from a given relative URI (local path).
51 * <p>The relative URI is a local filesystem path. The path can be
56 * generate a good absolute URI.</p>
58 * @param localPath The relative URI to resolve
60 * @return Resolved absolute URI
109 * Return true if the systemId denotes an absolute URI .
112 * @return true if the systemId is an an absolute URI
118 * character cannot be used as the first segment of a relative URI path
122 * %REVIEW% Can we assume here that systemId is a valid URI?
186 * the input string to generate a well-formed URI string.
217 * Take a SystemID string and try to turn it into a good absolute URI.
219 * @param systemId A URI string, which may be absolute or relative.
221 * @return The resolved absolute URI
273 * Take a SystemID string and try to turn it into a good absolute URI.
276 * @param base The URI string used as the base for resolving the systemID
278 * @return The resolved absolute URI
279 * @throws TransformerException thrown if the string can't be turned into a URI.
288 URI uri = null;
291 URI baseURI = new URI(absoluteBase);
292 uri = new URI(baseURI, urlString);
299 return replaceChars(uri.toString());