Ho come input una stringa che è un file URI
. come è possibile ottenere l'ultimo segmento di percorso (che nel mio caso è un id)?
Questo è il mio URL di input:
String uri = "http://base_path/some_segment/id"
e devo ottenere l'id che ho provato con questo:
String strId = "http://base_path/some_segment/id";
strId = strId.replace(path);
strId = strId.replaceAll("/", "");
Integer id = new Integer(strId);
return id.intValue();
ma non funziona, e sicuramente ci deve essere un modo migliore per farlo.