我想从 url 中获取whatevername.css,但我做错了,url 可能会更改,名称也可能会更改
www.asdasad.as/asdas/asdas/mystyles.css
asda.com/styles.css 等
我已经尝试过了(但它不起作用“无法从结果为 void 的方法返回值”):
String fileName = "www.whateverpage.es/style.css";
int idx = fileName.replaceAll("\\", "/").lastIndexOf("/");
return idx >= 0 ? fileName.substring(idx + 1) : fileName;