从href属性获取HTTP URL(所有可能的链接方式)

时间:2018-10-29 20:58:44

标签: java html url

我正在尝试做一个简单的脚本,它将所有可能的HTML链接转换为HTTP URL,例如

http://example.com //example.com /index.html ./index.html index.html

我已经尝试过在另一个答案中找到的功能:

public static Integer isAbsoluteURL (String url) throws java.net.MalformedURLException {
    final URL baseHTTP = new URL("http://example.com");
    final URL baseFILE = new URL("file:///");
    if (url.length() > 0) {
        if (url.substring(0, 1) == "/") {
            return 0;
        }
    }
    URL frelative;
    URL hrelative;
    try {
        frelative = new URL(baseFILE, url);
        hrelative = new URL(baseHTTP, url);
    } catch (MalformedURLException e) {
        System.out.println("MalformedURLException found");
        return 3;
    }
    if (frelative.equals(hrelative)) {
        return 0;
    } else {
        return 1;
    }
}

我想获得绝对链接,但是代码不适用于./、/(没有http [s])。

谢谢。

1 个答案:

答案 0 :(得分:0)

我宁愿使用spring的UriComponentBuilder来处理所有事情:

 https://www.baeldung.com/spring-uricomponentsbuilder