Mam jako dane wejściowe ciąg, który jest URI
. jak można uzyskać ostatni segment ścieżki (w moim przypadku jest to identyfikator)?
To jest mój wejściowy adres URL:
String uri = "http://base_path/some_segment/id"
i muszę uzyskać identyfikator, który próbowałem z tym:
String strId = "http://base_path/some_segment/id";
strId = strId.replace(path);
strId = strId.replaceAll("/", "");
Integer id = new Integer(strId);
return id.intValue();
ale to nie działa i na pewno musi istnieć lepszy sposób, aby to zrobić.