All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yoojia.halo.utils.URIs Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.github.yoojia.halo.utils;

/**
 * @author YOOJIA.CHEN ([email protected])
 */
public class URIs {

    public static String combined(String root, String path){
        final boolean starts = path.startsWith("/");
        final boolean ends = root.endsWith("/");
        final String uri;
        if(ends && starts){
            uri = root + path.substring(1);
        }else{
            uri = root + (ends || starts ? "" : "/") + path;
        }
        return uri;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy