Java URI Create getURI(String host, int port, String path, boolean isHTTPS)

Here you can find the source of getURI(String host, int port, String path, boolean isHTTPS)

Description

get URI

License

Open Source License

Declaration

public static URI getURI(String host, int port, String path, boolean isHTTPS)
            throws MalformedURLException, URISyntaxException 

Method Source Code

//package com.java2s;
/*//from   w  ww  .ja v  a2 s.  c  o m
 * Copyright 2013 Simon Thiel
 *
 * This file is part of SitJar.
 *
 * SitJar 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 3 of the License, or
 * (at your option) any later version.
 * 
 * SitJar 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 SitJar. If not, see <http://www.gnu.org/licenses/lgpl.txt>.
 */

import java.net.MalformedURLException;

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

public class Main {
    public static URI getURI(String host, int port, String path, boolean isHTTPS)
            throws MalformedURLException, URISyntaxException {

        String myUrl = isHTTPS ? "https" : "http";
        myUrl += "://" + host + ":" + port + path;

        return new URI(myUrl);
    }
}

Related

  1. getURI(final String address)
  2. getURI(final String base, final String href)
  3. getURI(final String uri)
  4. getURI(List data, Integer col)
  5. getURI(String bucket, String key)
  6. GetURI(String host, String port, String resource)
  7. getURI(String path)
  8. getURI(String path)
  9. getURI(String path, String name)

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