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

📄 httpurl.java

📁 Light in the box 抓取程序。 使用HttpClient
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/HttpURL.java,v 1.18 2004/09/30 17:26:41 oglueck Exp $ * $Revision: 507324 $ * $Date: 2007-02-14 01:12:11 +0100 (Wed, 14 Feb 2007) $ * * ==================================================================== * *  Licensed to the Apache Software Foundation (ASF) under one or more *  contributor license agreements.  See the NOTICE file distributed with *  this work for additional information regarding copyright ownership. *  The ASF licenses this file to You under the Apache License, Version 2.0 *  (the "License"); you may not use this file except in compliance with *  the License.  You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * *  Unless required by applicable law or agreed to in writing, software *  distributed under the License is distributed on an "AS IS" BASIS, *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *  See the License for the specific language governing permissions and *  limitations under the License. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation.  For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */package org.apache.commons.httpclient;import org.apache.commons.httpclient.util.URIUtil;/** * The HTTP URL. * * @author <a href="mailto:jericho at apache.org">Sung-Gu</a> * @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a> */public class HttpURL extends URI {    // ----------------------------------------------------------- Constructors    /** Create an instance as an internal use. */    protected HttpURL() {    }    /**     * Construct a HTTP URL as an escaped form of a character array with the     * given charset to do escape encoding.     *     * @param escaped the HTTP URL character sequence     * @param charset the charset string to do escape encoding     * @throws URIException If {@link #checkValid()} fails     * @throws NullPointerException if <code>escaped</code> is <code>null</code>     * @see #getProtocolCharset     */    public HttpURL(char[] escaped, String charset)        throws URIException, NullPointerException {        protocolCharset = charset;        parseUriReference(new String(escaped), true);        checkValid();    }    /**     * Construct a HTTP URL as an escaped form of a character array.     *     * @param escaped the HTTP URL character sequence     * @throws URIException If {@link #checkValid()} fails     * @throws NullPointerException if <code>escaped</code> is <code>null</code>     * @see #getDefaultProtocolCharset     */    public HttpURL(char[] escaped) throws URIException, NullPointerException {        parseUriReference(new String(escaped), true);        checkValid();    }    /**     * Construct a HTTP URL from a given string with the given charset to do     * escape encoding.     *     * @param original the HTTP URL string     * @param charset the charset string to do escape encoding     * @throws URIException If {@link #checkValid()} fails     * @see #getProtocolCharset     */    public HttpURL(String original, String charset) throws URIException {        protocolCharset = charset;        parseUriReference(original, false);        checkValid();    }    /**     * Construct a HTTP URL from a given string.     *     * @param original the HTTP URL string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String original) throws URIException {        parseUriReference(original, false);        checkValid();    }    /**     * Construct a HTTP URL from given components.     *     * @param host the host string     * @param port the port number     * @param path the path string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String host, int port, String path) throws URIException {        this(null, null, host, port, path, null, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param host the host string     * @param port the port number     * @param path the path string     * @param query the query string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String host, int port, String path, String query)        throws URIException {        this(null, null, host, port, path, query, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param user the user name     * @param password his or her password     * @param host the host string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String user, String password, String host)        throws URIException {        this(user, password, host, -1, null, null, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param user the user name     * @param password his or her password     * @param host the host string     * @param port the port number     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String user, String password, String host, int port)        throws URIException {        this(user, password, host, port, null, null, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param user the user name     * @param password his or her password     * @param host the host string     * @param port the port number     * @param path the path string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String user, String password, String host, int port,            String path) throws URIException {        this(user, password, host, port, path, null, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param user the user name     * @param password his or her password     * @param host the host string     * @param port the port number     * @param path the path string     * @param query The query string.     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String user, String password, String host, int port,            String path, String query) throws URIException {        this(user, password, host, port, path, query, null);    }    /**     * Construct a HTTP URL from given components.     *     * @param host the host string     * @param path the path string     * @param query the query string     * @param fragment the fragment string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String host, String path, String query, String fragment)        throws URIException {        this(null, null, host, -1, path, query, fragment);    }    /**     * Construct a HTTP URL from given components.     *      * Note: The <code>userinfo</code> format is normally     * <code>&lt;username&gt;:&lt;password&gt;</code> where     * username and password must both be URL escaped.      *     * @param userinfo the userinfo string whose parts are URL escaped     * @param host the host string     * @param path the path string     * @param query the query string     * @param fragment the fragment string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String userinfo, String host, String path, String query,            String fragment) throws URIException {        this(userinfo, host, -1, path, query, fragment);    }    /**     * Construct a HTTP URL from given components.     *     * Note: The <code>userinfo</code> format is normally     * <code>&lt;username&gt;:&lt;password&gt;</code> where     * username and password must both be URL escaped.     *       * @param userinfo the userinfo string whose parts are URL escaped     * @param host the host string     * @param port the port number     * @param path the path string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String userinfo, String host, int port, String path)        throws URIException {        this(userinfo, host, port, path, null, null);    }    /**     * Construct a HTTP URL from given components.     *     * Note: The <code>userinfo</code> format is normally     * <code>&lt;username&gt;:&lt;password&gt;</code> where     * username and password must both be URL escaped.     *       * @param userinfo the userinfo string whose parts are URL escaped     * @param host the host string     * @param port the port number     * @param path the path string     * @param query the query string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String userinfo, String host, int port, String path,            String query) throws URIException {        this(userinfo, host, port, path, query, null);    }    /**     * Construct a HTTP URL from given components.     *     * Note: The <code>userinfo</code> format is normally     * <code>&lt;username&gt;:&lt;password&gt;</code> where     * username and password must both be URL escaped.     *       * @param userinfo the userinfo string whose parts are URL escaped     * @param host the host string     * @param port the port number     * @param path the path string     * @param query the query string     * @param fragment the fragment string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String userinfo, String host, int port, String path,            String query, String fragment) throws URIException {        // validate and contruct the URI character sequence        StringBuffer buff = new StringBuffer();        if (userinfo != null || host != null || port != -1) {            _scheme = DEFAULT_SCHEME; // in order to verify the own protocol            buff.append(_default_scheme);            buff.append("://");            if (userinfo != null) {                buff.append(userinfo);                buff.append('@');            }            if (host != null) {                buff.append(URIUtil.encode(host, URI.allowed_host));                if (port != -1 || port != DEFAULT_PORT) {                    buff.append(':');                    buff.append(port);                }            }        }        if (path != null) {  // accept empty path            if (scheme != null && !path.startsWith("/")) {                throw new URIException(URIException.PARSING,                        "abs_path requested");            }            buff.append(URIUtil.encode(path, URI.allowed_abs_path));        }        if (query != null) {            buff.append('?');            buff.append(URIUtil.encode(query, URI.allowed_query));        }        if (fragment != null) {            buff.append('#');            buff.append(URIUtil.encode(fragment, URI.allowed_fragment));        }        parseUriReference(buff.toString(), true);        checkValid();    }    /**     * Construct a HTTP URL from given components.     *     * @param user the user name     * @param password his or her password     * @param host the host string     * @param port the port number     * @param path the path string     * @param query the query string     * @param fragment the fragment string     * @throws URIException If {@link #checkValid()} fails     * @see #getDefaultProtocolCharset     */    public HttpURL(String user, String password, String host, int port,            String path, String query, String fragment) throws URIException {        this(toUserinfo(user, password), host, port, path, query, fragment);    }        protected static String toUserinfo(String user, String password) throws URIException {        if (user == null) return null;        StringBuffer usrinfo = new StringBuffer(20); //sufficient for real world        usrinfo.append(URIUtil.encode(user, URI.allowed_within_userinfo));        if (password == null) return usrinfo.toString();        usrinfo.append(':');        usrinfo.append(URIUtil.encode(password, URI.allowed_within_userinfo));        return usrinfo.toString();    }    /**     * Construct a HTTP URL with a given relative URL string.     *     * @param base the base HttpURL     * @param relative the relative HTTP URL string     * @throws URIException If {@link #checkValid()} fails     */    public HttpURL(HttpURL base, String relative) throws URIException {        this(base, new HttpURL(relative));    }    /**     * Construct a HTTP URL with a given relative URL.     *     * @param base the base HttpURL     * @param relative the relative HttpURL     * @throws URIException If {@link #checkValid()} fails     */    public HttpURL(HttpURL base, HttpURL relative) throws URIException {        super(base, relative);        checkValid();    }    // -------------------------------------------------------------- Constants    /**     * Default scheme for HTTP URL.     */    public static final char[] DEFAULT_SCHEME = { 'h', 't', 't', 'p' };    /**     * Default scheme for HTTP URL.     * @deprecated Use {@link #DEFAULT_SCHEME} instead.  This one doesn't     * conform to the project naming conventions.     */    public static final char[] _default_scheme = DEFAULT_SCHEME;    /**     * Default port for HTTP URL.     */    public static final int DEFAULT_PORT = 80;    /**     * Default port for HTTP URL.     * @deprecated Use {@link #DEFAULT_PORT} instead.  This one doesn't conform     * to the project naming conventions.     */    public static final int _default_port = DEFAULT_PORT;    /**     * The serialVersionUID.     */    static final long serialVersionUID = -7158031098595039459L;    // ------------------------------------------------------------- The scheme    /**     * Get the scheme.  You can get the scheme explicitly.     *     * @return the scheme     */

⌨️ 快捷键说明

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