举例:
String imgUrl = "http://127.0.0.1:8080/cms/ReadAddress/666.jpg";
String image = imgUrl.substring(imgUrl.lastIndexOf("/")+1);
最后结果:666.jpg
语法:
字符串.substring(字符串.lastIndexOf("\\")+1);
也可写成
字符串.substring(字符串.lastIndexOf("/")+1);
或者(建议用这个,windows/mac/linux都适配)
字符串.substring(字符串.lastIndexOf(File.separator)+1);