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

com.iteaj.iot.utils.UrlUtils Maven / Gradle / Ivy

The newest version!
package com.iteaj.iot.utils;

public class UrlUtils {

    /**
     * 剔除参数的uri
     * @param url
     * @return
     */
    public static String uriCutParam(String url) {
        int indexOf = url.indexOf("?");
        return indexOf == -1 ? url : url.substring(0, indexOf);
    }

    public static String subUrlOfRootStart(String url) {
        return url.startsWith("/") ? url : "/"+url;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy