-4

它必须识别两种形式:

<img src='http://www.mysite.com/myimg.png' width="89px" >
<img alt="ciao" width="89px" src="http://www.mysite.com/myimg.png" >
4

1 回答 1

1

这是我制作的快速代码。未经测试,但它应该可以工作。基本上,我们将字符串切割成一个子字符串数组,其中“/”是我们切割的地方。所以我们的子字符串之一必须包含图像,如果没有,则没有图像文件。

String[] src2=src.split("/");
String result="noting found !";

for(int i=0; i < src2.length; i++) {
   if( src2[i].contains("img") && (src2[i].contains(".png") || src2[i].contains(".jpg")/* more extensions */) ) { // add more extensions if needed
      result = src2[i];
      break;
   {
}

result = result.split(" ")[0]; //will cut at the first "space" and take only the "img.jpg" not the "width"

if(!result.equals("noting found !")) System.out.println("We found an image: "+result);
于 2013-08-23T17:00:30.563 回答