您的位置:首页 > Web前端 > HTML

取html文本中的图片路径

2015-12-09 09:42 246 查看
/**
* 获取html文本中的图片路径
* @param html html文本
* @return
*/
private String[] getImgs(String html) {

String img = "";
Pattern p_image;
Matcher m_image;
String str = "";
String[] images = null;
String regEx_img = "(<img.*srcs*=s*(.*?)[^>]*?>)";
p_image = Pattern.compile(regEx_img, Pattern.CASE_INSENSITIVE);
m_image = p_image.matcher(html);
while (m_image.find()) {
img = m_image.group();
Matcher m = Pattern.compile("src\\s*=\\s*\"?(.*?)(\"|>|\\s+)").matcher(img);
while (m.find()) {
String tempSelected = m.group(1);
if ("".equals(str)) {
str = tempSelected;
} else {
String temp = tempSelected;
str = str + "," + temp;
}
}
}
if (!"".equals(str)) {
images = str.split(",");
}
return images;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: