FetchTool.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.tool.impl;
  2. import net.javacoding.jspider.api.event.JSpiderEvent;
  3. import net.javacoding.jspider.api.event.resource.ResourceFetchedEvent;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. /**
  7.  * $Id: FetchTool.java,v 1.3 2003/04/01 19:44:42 vanrogu Exp $
  8.  */
  9. public class FetchTool extends BaseToolImpl {
  10.     public String getName() {
  11.         return "fetch";
  12.     }
  13.     public void notify(JSpiderEvent event) {
  14.         if ( event instanceof ResourceFetchedEvent ) {
  15.             ResourceFetchedEvent rfe = (ResourceFetchedEvent)event;
  16.             try {
  17.                 InputStream is = rfe.getResource().getInputStream();
  18.                 int read = is.read();
  19.                 while ( read != -1 ) {
  20.                     System.out.write(read);
  21.                     read = is.read();
  22.                 }
  23.             } catch (IOException e) {
  24.                 e.printStackTrace();
  25.             }
  26.         }
  27.     }
  28. }