uri.getPath()路径有:怎么消除
时间: 2024-03-08 17:48:14 浏览: 150
java中相对路径与绝对路径的问题
如果想要消除uri.getPath()中的路径,可以使用以下方法:
1. 使用replace()方法将路径替换为空字符串:
```
String path = uri.getPath().replace("/", "");
```
2. 使用substring()方法截取路径中不包括"/"的部分:
```
String path = uri.getPath().substring(1);
```
这样可以得到不包括第一个"/"的路径部分。
阅读全文