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

org.noear.water.utils.HostUtils Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
package org.noear.water.utils;

/**
 * @author noear 2021/1/22 created
 */
public class HostUtils {
    public static String adjust(String host) {
        if (host.indexOf("://") < 0) {
            host = "http://" + host;
        }

        if (host.endsWith("/")) {
            host = host.substring(0, host.length() - 2);
        }

        return host;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy