httpcontenttoolargeexception.java

来自「Light in the box 抓取程序。 使用HttpClient」· Java 代码 · 共 23 行

JAVA
23
字号
package org.apache.commons.httpclient;/** * Signals that the response content was larger than anticipated.  *  * @author Ortwin Gl點k */public class HttpContentTooLargeException extends HttpException {    private int maxlen;    public HttpContentTooLargeException(String message, int maxlen) {        super(message);        this.maxlen = maxlen;    }        /**     * @return the maximum anticipated content length in bytes.     */    public int getMaxLength() {        return maxlen;    }}

⌨️ 快捷键说明

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