String str = "Your Cat_Desc tag value";
String[] temp;
if (str.contains("<img src=")) {
temp = str.split("<img src=");
String imagesUrl = temp[1].substring(
temp[1].indexOf("""), temp[1]
.indexOf(" "));
imagesUrl = imagesUrl
.replace(""", " ");
System.out.println("My image URL :: " +imagesUrl);
}else {
System.out.println("NO imageurl found"); }
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…