⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httpconnectionpool.java

📁 真正的网络爬虫的源代码啊,希望大家好好阅读,写出心得体会啊
💻 JAVA
字号:
package net.matuschek.http.connection;

/*********************************************
    Copyright (c) 2001 by Daniel Matuschek
*********************************************/

import java.io.IOException;
import java.net.InetAddress;

/**
 * This class implements an connection pool for HTTP TCP connections.
 * Actually, it doesn't pool, but this will be implemented in the next
 * time.
 * 
 * @author Daniel Matuschek 
 * @version $Id: HttpConnectionPool.java,v 1.4 2001/04/20 16:12:42 matuschd Exp $
 */
public abstract class HttpConnectionPool {

  /** default timeout in milliseconds (60 seconds) */
  private static int DEFAULT_TIMEOUT = 60000;
  
  /** the HttpConnections */
  HttpConnection connections[];

  /** TCP socket timeout (for connect and read/write) */
  int connectionTimeout = DEFAULT_TIMEOUT;

  /**
   * Creates a new HTTP connection pool
   *
   * @param maxConnections maximal number of open connections
   */
  public HttpConnectionPool(int maxConnections) {
    connections = new HttpConnection[maxConnections];
  }


  /**
   * Sets the timeout for the HTTP connections
   * @param connectionTimeout timeout in milliseconds
   */
  public void setConnectionTimeout(int connectionTimeout) {
    this.connectionTimeout = connectionTimeout;
  }

  
  /**
   * Gets the timeout for the HTTP connections
   * @return timeout in milliseconds
   */
  public int getConnectionTimeout() {
    return this.connectionTimeout;
  }
  

  /**
   * Gets a connection to the given server and port. Opens a new
   * connection or uses a connection from the pool if there is one
   * for this address/port combination
   *
   * @param address the IP address to connect to
   * @param port the port to connect to (usually 80 for HTTP)
   * @return a HttpConnection object 
   * @exception IOException if the TCP socket connection could
   * not be established or all slots are used
   */
  public abstract HttpConnection 
    getConnection(InetAddress addr, int port)
    throws IOException ;


  /**
   * Gives back the given HttpConnection to the pool
   */
  public abstract void giveback(HttpConnection conn);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -