我使用以下代码在Java中创建URI:
new URI(/*scheme*/ "scheme", /*host*/ null, /*path*/ "/42", /*fragment*/ null);
当我将此URI转换为字符串时,我得到scheme:/42
。格式为scheme:/path
的URI是否有效?
使用new URI("scheme", "", "/path", null)
时得到scheme:///path
。我知道这是有效的(例如file:///
URI)。这些URI是否具有不同的含义?
答案 0 :(得分:1)
请参见Wikipedia article on URI和diagram on Wikimedia Commons:
URI = scheme:[//authority]path[?query][#fragment]
[…]
可以跳过//authority
(用户+密码+主机+端口)部分。 path
部分后面的/
组件包括 //authority
。
此URI 有效。