亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? httpmethod.java

?? Light in the box 抓取程序。 使用HttpClient
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
     */    Header[] getRequestHeaders();    /**     * Returns the request headers with the given name. Note that header-name matching is     * case insensitive.     * @param headerName the name of the headers to be returned.     * @return an array of zero or more headers     *      * @since 3.0     */    Header[] getRequestHeaders(String headerName);    // ---------------------------------------------------------------- Queries    /**     * Returns <tt>true</tt> the method is ready to execute, <tt>false</tt> otherwise.     *      * @return <tt>true</tt> if the method is ready to execute, <tt>false</tt> otherwise.     */    boolean validate();    /**     * Returns the status code associated with the latest response.     *      * @return The status code from the most recent execution of this method.     *         If the method has not yet been executed, the result is undefined.     */    int getStatusCode();    /**     * Returns the status text (or "reason phrase") associated with the latest     * response.     *      * @return The status text from the most recent execution of this method.     *         If the method has not yet been executed, the result is undefined.     */    String getStatusText();    /**     * Returns the response headers from the most recent execution of this request.     *      * @return A newly-created array containing all of the response headers,      *         in the order in which they appeared in the response.     */    Header[] getResponseHeaders();    /**     * Returns the specified response header. Note that header-name matching is     * case insensitive.     *      * @param headerName The name of the header to be returned.     *      * @return The specified response header.  If the repsonse contained multiple     *         instances of the header, its values will be combined using the ','     *         separator as specified by RFC2616.     */    Header getResponseHeader(String headerName);    /**     * Returns the response headers with the given name. Note that header-name matching is     * case insensitive.     * @param headerName the name of the headers to be returned.     * @return an array of zero or more headers     *      * @since 3.0     */    Header[] getResponseHeaders(String headerName);    /**     * Returns the response footers from the most recent execution of this request.     *      * @return an array containing the response footers in the order that they     *         appeared in the response.  If the response had no footers,     *         an empty array will be returned.     */    Header[] getResponseFooters();    /**     * Return the specified response footer. Note that footer-name matching is     * case insensitive.     *      * @param footerName The name of the footer.     * @return The response footer.     */    Header getResponseFooter(String footerName);    /**     * Returns the response body of the HTTP method, if any, as an array of bytes.     * If the method has not yet been executed or the response has no body, <code>null</code>     * is returned.  Note that this method does not propagate I/O exceptions.     * If an error occurs while reading the body, <code>null</code> will be returned.     *      * @return The response body, or <code>null</code> if the     *         body is not available.     *      * @throws IOException if an I/O (transport) problem occurs     */    byte[] getResponseBody() throws IOException;    /**     * Returns the response body of the HTTP method, if any, as a {@link String}.      * If response body is not available or cannot be read, <tt>null</tt> is returned.     * The raw bytes in the body are converted to a <code>String</code> using the     * character encoding specified in the response's <tt>Content-Type</tt> header, or     * ISO-8859-1 if the response did not specify a character set.     * <p>     * Note that this method does not propagate I/O exceptions.     * If an error occurs while reading the body, <code>null</code> will be returned.     *     * @return The response body converted to a <code>String</code>, or <code>null</code>     *         if the body is not available.     *      * @throws IOException if an I/O (transport) problem occurs     */    String getResponseBodyAsString() throws IOException;    /**     * Returns the response body of the HTTP method, if any, as an InputStream.     * If the response had no body or the method has not yet been executed,     * <code>null</code> is returned.  Additionally, <code>null</code> may be returned     * if {@link #releaseConnection} has been called or     * if this method was called previously and the resulting stream was closed.      *      * @return The response body, or <code>null</code> if it is not available      *      * @throws IOException if an I/O (transport) problem occurs     */    InputStream getResponseBodyAsStream() throws IOException;    /**     * Returns <tt>true</tt> if the HTTP method has been already {@link #execute executed},     * but not {@link #recycle recycled}.     *      * @return <tt>true</tt> if the method has been executed, <tt>false</tt> otherwise     */    boolean hasBeenUsed();    // --------------------------------------------------------- Action Methods    /**     * Executes this method using the specified <code>HttpConnection</code> and     * <code>HttpState</code>.      *     * @param state the {@link HttpState state} information to associate with this method     * @param connection the {@link HttpConnection connection} used to execute     *        this HTTP method     *     * @throws IOException If an I/O (transport) error occurs. Some transport exceptions     *                     can be recovered from.     * @throws HttpException  If a protocol exception occurs. Usually protocol exceptions      *                    cannot be recovered from.     *     * @return the integer status code if one was obtained, or <tt>-1</tt>     */    int execute(HttpState state, HttpConnection connection)         throws HttpException, IOException;    /**     * Aborts the execution of the HTTP method.     *      * @see #execute(HttpState, HttpConnection)     *      * @since 3.0     */    void abort();    /**     * Recycles the HTTP method so that it can be used again.     * Note that all of the instance variables will be reset     * once this method has been called. This method will also     * release the connection being used by this HTTP method.     *      * @see #releaseConnection()     *      * @deprecated no longer supported and will be removed in the future     *             version of HttpClient     */    void recycle();    /**     * Releases the connection being used by this HTTP method. In particular the     * connection is used to read the response (if there is one) and will be held     * until the response has been read. If the connection can be reused by other      * HTTP methods it is NOT closed at this point.     * <p>     * After this method is called, {@link #getResponseBodyAsStream} will return     * <code>null</code>, and {@link #getResponseBody} and {@link #getResponseBodyAsString}     * <em>may</em> return <code>null</code>.      */    void releaseConnection();    /**     * Add a footer to this method's response.     * <p>     * <b>Note:</b> This method is for     * internal use only and should not be called by external clients.     *      * @param footer the footer to add     *      * @since 2.0     */    void addResponseFooter(Header footer);    /**      * Returns the Status-Line from the most recent response for this method,     * or <code>null</code> if the method has not been executed.     *      * @return the status line, or <code>null</code> if the method has not been executed     *      * @since 2.0     */    StatusLine getStatusLine();    /**     * Returns <tt>true</tt> if the HTTP method should automatically handle HTTP      * authentication challenges (status code 401, etc.), <tt>false</tt> otherwise     *     * @return <tt>true</tt> if authentication challenges will be processed      * automatically, <tt>false</tt> otherwise.     *      * @since 2.0     *      * @see #setDoAuthentication(boolean)     */    boolean getDoAuthentication();    /**     * Sets whether or not the HTTP method should automatically handle HTTP      * authentication challenges (status code 401, etc.)     *     * @param doAuthentication <tt>true</tt> to process authentication challenges     * automatically, <tt>false</tt> otherwise.     *      * @since 2.0     *      * @see #getDoAuthentication()     */    void setDoAuthentication(boolean doAuthentication);    /**     * Returns {@link HttpMethodParams HTTP protocol parameters} associated with this method.     *      * @since 3.0     *      * @see HttpMethodParams     */    public HttpMethodParams getParams();    /**     * Assigns {@link HttpMethodParams HTTP protocol parameters} for this method.     *      * @since 3.0     *      * @see HttpMethodParams     */    public void setParams(final HttpMethodParams params);    /**     * Returns the target host {@link AuthState authentication state}     *      * @return host authentication state     *      * @since 3.0     */    public AuthState getHostAuthState();    /**     * Returns the proxy {@link AuthState authentication state}     *      * @return host authentication state     *      * @since 3.0     */    public AuthState getProxyAuthState();    /**     * Returns <tt>true</tt> if the HTTP has been transmitted to the target     * server in its entirety, <tt>false</tt> otherwise. This flag can be useful      * for recovery logic. If the request has not been transmitted in its entirety,     * it is safe to retry the failed method.     *      * @return <tt>true</tt> if the request has been sent, <tt>false</tt> otherwise     */    boolean isRequestSent();}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久国产综合精品女不卡| 欧美亚洲免费在线一区| 99久久精品免费精品国产| 在线综合视频播放| 国产精品美女久久久久aⅴ国产馆| 一区二区国产视频| 不卡的av在线| 久久综合国产精品| 午夜激情久久久| 色综合久久久久久久久| 久久久青草青青国产亚洲免观| 亚洲国产裸拍裸体视频在线观看乱了| 国产98色在线|日韩| 日韩一区二区麻豆国产| 亚洲国产毛片aaaaa无费看| 色综合激情五月| 国产精品人成在线观看免费| 美女尤物国产一区| 3d成人动漫网站| 午夜成人免费视频| 欧美三级视频在线播放| 亚洲综合在线五月| 91国内精品野花午夜精品| 亚洲色图制服诱惑| 成人福利视频在线看| 国产午夜精品理论片a级大结局| 久久国产剧场电影| 精品久久久影院| 毛片av中文字幕一区二区| 欧美高清性hdvideosex| 午夜激情一区二区| 欧美一区二区三区在线| 日产国产欧美视频一区精品| 欧美久久久久中文字幕| 日日夜夜免费精品视频| 91精品国产aⅴ一区二区| 日韩电影在线一区二区三区| 欧美男生操女生| 人人狠狠综合久久亚洲| 欧美大度的电影原声| 国产一区不卡在线| 国产日韩精品视频一区| 91在线视频18| 亚洲一二三级电影| 欧美一级二级在线观看| 国产一区二区三区四区五区美女| 久久亚洲影视婷婷| 波多野结衣在线一区| 亚洲一区二区三区在线播放| 88在线观看91蜜桃国自产| 美女在线一区二区| 国产精品色呦呦| 欧美中文字幕久久| 激情欧美一区二区| 亚洲视频在线观看一区| 欧美系列亚洲系列| 麻豆91在线播放| 中文字幕一区二区三区蜜月| 欧美午夜片在线观看| 奇米888四色在线精品| 国产午夜精品一区二区三区嫩草| av爱爱亚洲一区| 日韩av网站免费在线| 欧美国产综合一区二区| 欧美色图片你懂的| 国产69精品一区二区亚洲孕妇| 亚洲精品高清视频在线观看| 在线成人小视频| 91在线高清观看| 玖玖九九国产精品| 亚洲小说春色综合另类电影| 久久免费午夜影院| 欧美日韩国产区一| 不卡高清视频专区| 久久99久国产精品黄毛片色诱| 中文字幕一区av| 日韩美一区二区三区| 色综合天天性综合| 国产美女一区二区| 五月天一区二区| 中文字幕视频一区| 久久久久国产精品厨房| 欧美区一区二区三区| 97精品视频在线观看自产线路二| 麻豆一区二区三区| 亚洲午夜激情网站| 中文字幕在线观看一区二区| 精品噜噜噜噜久久久久久久久试看| 日本电影欧美片| 播五月开心婷婷综合| 国产精品一区二区三区乱码| 日韩高清不卡在线| 午夜电影网亚洲视频| 一区二区三区在线免费播放| 国产精品九色蝌蚪自拍| 国产人成一区二区三区影院| 欧美tickling挠脚心丨vk| 欧美久久久久久久久中文字幕| 99国产精品国产精品久久| 国产乱码精品1区2区3区| 九色porny丨国产精品| 日本不卡一二三区黄网| 日韩二区三区四区| 三级不卡在线观看| 日韩激情视频在线观看| 五月天欧美精品| 亚洲一区二区在线免费看| 亚洲人成网站在线| 国产精品卡一卡二| 国产精品亲子伦对白| 国产情人综合久久777777| 国产三级欧美三级日产三级99| 精品日本一线二线三线不卡| 日韩欧美国产综合一区| 日韩视频国产视频| 精品少妇一区二区三区视频免付费| 宅男噜噜噜66一区二区66| 日韩一级片网址| 日韩欧美亚洲国产另类 | 久久久久97国产精华液好用吗| 欧美一区二区不卡视频| 日韩欧美色综合网站| 精品久久99ma| 国产偷v国产偷v亚洲高清| 国产精品女主播av| 亚洲男同性恋视频| 偷窥少妇高潮呻吟av久久免费| 石原莉奈在线亚洲三区| 麻豆成人综合网| 成人aa视频在线观看| 欧美在线免费播放| 日韩三级精品电影久久久| 精品国产一区a| 欧美激情一区二区在线| 亚洲女人的天堂| 日韩成人av影视| 国产大片一区二区| 91浏览器在线视频| 日韩一级二级三级精品视频| 久久久精品综合| 亚洲影视资源网| 久久91精品国产91久久小草| 成人美女在线观看| 欧美猛男gaygay网站| 久久在线观看免费| 亚洲精品中文字幕乱码三区| 日韩专区在线视频| 国产精一品亚洲二区在线视频| 97精品国产露脸对白| 日韩欧美一级二级三级| 综合激情成人伊人| 精品一区精品二区高清| 色婷婷激情综合| 久久久精品人体av艺术| 亚洲国产精品久久久久婷婷884 | 色婷婷综合久久久久中文一区二区 | 国产精品一区二区三区四区| 色伊人久久综合中文字幕| 欧美一级久久久久久久大片| 国产精品久久久久久亚洲毛片 | 99久久99精品久久久久久 | 在线看国产日韩| 国产视频亚洲色图| 蜜芽一区二区三区| 一本色道久久综合亚洲精品按摩| 2024国产精品视频| 亚洲第一av色| 99热这里都是精品| 欧美精品一区二区三区蜜臀| 一区二区久久久久久| 粉嫩在线一区二区三区视频| 欧美本精品男人aⅴ天堂| 午夜精品aaa| 欧美色男人天堂| 亚洲乱码国产乱码精品精小说| 国产成人午夜视频| 欧美大白屁股肥臀xxxxxx| 日韩国产欧美在线观看| 欧美在线视频全部完| 亚洲欧美日韩国产综合| 国产精品91一区二区| 久久久精品欧美丰满| 精品系列免费在线观看| 7777精品伊人久久久大香线蕉超级流畅| 亚洲天堂精品在线观看| www.欧美.com| 亚洲欧美综合色| 成人av影院在线| 1024国产精品| av电影在线观看不卡| 国产精品久久久久三级| 99亚偷拍自图区亚洲| 综合欧美一区二区三区| av一区二区久久| 亚洲精品国产精品乱码不99| 91美女在线视频| 亚洲午夜久久久久久久久电影网| 91麻豆.com| 午夜久久久久久电影| 欧美精品国产精品|