Returns the final component of this path, i.e., everything that follows the last separator. @return the final component of the path
()
| 271 | * @return the final component of the path |
| 272 | */ |
| 273 | public String getName() { |
| 274 | final String path = uri.getPath(); |
| 275 | final int slash = path.lastIndexOf(SEPARATOR); |
| 276 | return path.substring(slash + 1); |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Return full path. |