示例#1
0
文件: Fetcher.java 项目: mpermana/pet
  public static void main(String[] args) {
    DocumentSource lodestone = new DocumentSource();
    lodestone.url = "http://na.finalfantasyxiv.com/lodestone/character";
    lodestone.parameters.put("q", "takagi akito");
    lodestone.parameters.put("worldname", "Excalibur");

    Document document = (Document) Fetcher.fetch(lodestone);
    Elements img = document.select("div.thumb_cont_black_50 a img");
    for (Element element : img) {
      System.out.println(element.attr("src"));
    }
  }