Java URI Create getURI(final String uri)

Here you can find the source of getURI(final String uri)

Description

Since URIs are often hard-coded, needing to catch a syntax exception is mostly unecessary.

License

Apache License

Parameter

Parameter Description
uri The URI to construct.

Exception

Parameter Description
IllegalArgumentException If URISyntaxException is encountered.

Return

The URI.

Declaration

public static URI getURI(final String uri) 

Method Source Code

//package com.java2s;
/*/* w w  w .j ava 2  s . c  om*/
 *  Copyright 2013 Eric F. Savage, code@efsavage.com
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

import java.net.URI;
import java.net.URISyntaxException;

public class Main {
    /**
     * Since URIs are often hard-coded, needing to catch a syntax exception is
     * mostly unecessary. Do not use this method on dynamically-constructed
     * URIs.
     * 
     * @param uri
     *            The URI to construct.
     * @return The URI.
     * @throws IllegalArgumentException
     *             If {@link URISyntaxException} is encountered.
     */
    public static URI getURI(final String uri) {
        try {
            return new URI(uri);
        } catch (final URISyntaxException e) {
            throw new IllegalArgumentException("Invalid Syntax: " + uri);
        }
    }
}

Related

  1. getURI(File file)
  2. getURI(File file)
  3. getUri(File file)
  4. getURI(final String address)
  5. getURI(final String base, final String href)
  6. getURI(List data, Integer col)
  7. getURI(String bucket, String key)
  8. getURI(String host, int port, String path, boolean isHTTPS)
  9. GetURI(String host, String port, String resource)

  10. HOME | Copyright © www.java2s.com 2016