源码查看器3.0添加新功能
Pattern p3=Pattern.compile("(?i)<link[^<>]*href=[\"']?([^\"'<>]+\\.css)[\"']?[^<>]*>"); Matcher m3=p3.matcher(htmlcode); while(m3.find()){ String css_url=htmlcode.substring(m3.start(1),m3.end(1)); css_url=new URL(new URL(url),css_url).toString(); css.append(css_url+"\n"); }