예제 #1
0
 /**
  * @param args
  * @throws Exception
  */
 public static void main(String[] args) throws Exception {
   // TODO Auto-generated method stub
   ArrayList<Document> documents = SearchEngine.generateMySearchResult("machine learning");
   for (int i = 0; i < documents.size(); i++) System.out.println(documents.get(i).get("url"));
 }