最佳答案
我有一个字符串作为输入,它是 URI
。怎样才能得到最后一个路径段(在我的例子中是一个 id) ?
这是我的输入地址:
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();
但它不起作用,而且肯定有更好的方法来做到这一点。