Java URI Create getUriScheme(String address)

Here you can find the source of getUriScheme(String address)

Description

get Uri Scheme

License

Open Source License

Declaration

private static String getUriScheme(String address) 

Method Source Code

//package com.java2s;
/*/*  ww w .  j  av a2s  . c  o m*/
 * JBoss, Home of Professional Open Source.
 * Copyright 2014, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

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

public class Main {
    private static final String HTTP = "http";

    private static String getUriScheme(String address) {
        try {
            URI addrURI = new URI(address);
            String scheme = addrURI.getScheme();
            return scheme != null ? scheme : HTTP;
        } catch (URISyntaxException e) {
            return HTTP;
        }
    }
}

Related

  1. getURIFromPath(String path)
  2. getURIName(String forwardSlashPath)
  3. getURIName(URI uri)
  4. getURIParameterValue(URI uri, String name, String defVal)
  5. getURIs(final Object[] objs)
  6. getURIsPrettyPrint(final Collection uris)
  7. getURIStream(Object obj)
  8. getURIWithAuthority(URI uri, String authority)
  9. stringToUri(String fileString)