Java中的URL

2020-06-25  本文已影响0人  码而优则仕

URL

统一资源定位符
标识某个资源的唯一地址
/**
 * Gets the protocol name of this {@code URL}.
 *
 * @return  the protocol of this {@code URL}.
 */
public String getProtocol() {
    return protocol;
}

URL不仅代表外网资源还代表本地资源
file协议类型:用于访问本地计算机中的文件,所以本机文件关注file协议就可以了

路径:通过ClassLoader获取资源需要的路径

URL类中如下方法获取资源的路径--绝对路径不是相对路径,包含文件名

/**
 * Gets the path part of this {@code URL}.
 *
 * @return  the path part of this {@code URL}, or an
 * empty string if one does not exist
 * @since 1.3
 */
public String getPath() {
    return path;
}
上一篇下一篇

猜你喜欢

热点阅读