日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

HttpClient模拟http请求

發布時間:2025/7/14 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 HttpClient模拟http请求 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

最近工作中使用到了兩個jar包?httpclient.jar, httpcore.jar

?

?HttpClient 的 abort(終止)程序示例

[java] view plaincopyprint? /* * ==================================================================== * 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.http.examples.client; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; /** * This example demonstrates how to abort an HTTP method before its normal completion. * 在HttpClient 普通完成前調用abort方法對其進行終止 */ public class ClientAbortMethod { public final static void main(String[] args) throws Exception { HttpClient httpclient = new DefaultHttpClient(); try { HttpGet httpget = new HttpGet("http://www.apache.org/"); System.out.println("executing request " + httpget.getURI()); HttpResponse response = httpclient.execute(httpget); HttpEntity entity = response.getEntity(); System.out.println("----------------------------------------"); System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); } System.out.println("----------------------------------------"); // Do not feel like reading the response body // Call abort on the request object // 不打算讀取response body // 調用request的abort方法 httpget.abort(); } finally { // When HttpClient instance is no longer needed, // shut down the connection manager to ensure // immediate deallocation of all system resources // 當HttpClient實例不再需要是,確保關閉connection manager,以釋放其系統資源 httpclient.getConnectionManager().shutdown(); } } }

 

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader;import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient;public class TTT {/*** @param args* @throws IOException* @throws ClientProtocolException*/public static void main(String[] args) throws ClientProtocolException, IOException{// 創建HttpClient實例HttpClient httpclient = new DefaultHttpClient();// 創建Get方法實例HttpGet httpgets = new HttpGet("http://www.baidu.com");HttpResponse response = httpclient.execute(httpgets);HttpEntity entity = response.getEntity();if (entity != null){InputStream instreams = entity.getContent();String str = convertStreamToString(instreams);System.out.println(str);//終止http請求和響應httpgets.abort();}}public static String convertStreamToString(InputStream is){BufferedReader reader = new BufferedReader(new InputStreamReader(is));StringBuilder sb = new StringBuilder();String line = null;try{while ((line = reader.readLine()) != null){sb.append(line + "\n");}} catch (IOException e){e.printStackTrace();} finally{try{is.close();} catch (IOException e){e.printStackTrace();}}return sb.toString();}}

  

轉載于:https://www.cnblogs.com/wuxinliulei/p/4859721.html

總結

以上是生活随笔為你收集整理的HttpClient模拟http请求的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。