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

com.github.rrsunhome.excelsql.util.PathMatcher Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.util;

/**
 * @author : qijia.wang
 * create at:  2020/4/3  下午10:36
 */
public class PathMatcher {

    /**
     * 匹配路径是否为网络路径
     *
     * @param url url
     * @return boolean
     */
    public static boolean matchUrl(String url) {
        if (url.toLowerCase().startsWith("http://") || url.toLowerCase().startsWith("https://")) {
            return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy