Java URI to Parameter getKey(URI uri)

Here you can find the source of getKey(URI uri)

Description

get Key

License

Open Source License

Return

scheme+host+port.

Declaration

public static String getKey(URI uri) 

Method Source Code


//package com.java2s;

import java.net.URI;

public class Main {
    /**/*w ww.  j a  v a 2s  .c  om*/
     * @return scheme+host+port.
     */
    public static String getKey(URI uri) {
        String s = uri.getScheme();
        String h = uri.getHost();
        int p = uri.getPort();
        if (s == null)
            s = "file";
        if (h == null)
            h = "";
        if (p == -1)
            return s + h;
        return s + h + p;
    }
}

Related

  1. extractUriParameters(String uriString)
  2. extractUriParameters(URI uri)
  3. getKey(String uri)
  4. getParameters(URI uri)
  5. getParameters(URI uri)
  6. getQueryKeyValuePairs(URI uri)
  7. getQueryKeyValuePairs(URI uri)