2016-05-13 13 views

答えて

1

は、すべての画像srctitle属性を読み取る例です:

public class Test { 

    public static void main(String[] args) { 
     try { 
      Document doc = Jsoup.connect("http://www.golem.de/").get(); 
      Elements imageElements = doc.getElementsByTag("img"); 
      for (Element element : imageElements) { 
       System.out.println("src: "+element.attr("src")); 
       System.out.println("title: "+element.attr("title")); 
      } 
     } catch (Exception e) { 
      e.printStackTrace(); 
     } 
    } 
} 
+0

はあなたにそれは私をたくさん助けたそんなにflavio.donzeありがとう –

関連する問題