Returns the (possibly empty) percent-decoded "path" component of this URI. NB: This method assumes the path was encoded as UTF-8, although RFC 3986 doesn't specify an encoding. Decoding errors are indicated by a '\u005CuFFFD' unicode replacement character in the output. Callers who w
()
| 474 | * java.net.URI}. |
| 475 | */ |
| 476 | public String getPath() { |
| 477 | return percentDecodeAssumedUtf8(path); |
| 478 | } |
| 479 | |
| 480 | /** |
| 481 | * Returns this URI's path as a list of path segments not including the '/' segment delimiters. |