如何获取 URI 的最后一个路径段
我有一个字符串作为输入,它是一个.如何获取最后一个路径段(在我的情况下是一个id)?URI
这是我的输入网址:
String uri = "http://base_path/some_segment/id"
我必须获得我尝试过的id:
String strId = "http://base_path/some_segment/id";
strId = strId.replace(path);
strId = strId.replaceAll("/", "");
Integer id = new Integer(strId);
return id.intValue();
但它不起作用,当然必须有更好的方法来做到这一点。