NoHttp封裝--04 緩存

来源:https://www.cnblogs.com/ganchuanpu/archive/2018/05/12/9030481.html
-Advertisement-
Play Games

1、Default模式,也是沒有設置緩存模式時的預設模式 這個模式實現http協議中的內容,比如響應碼是304時,當然還會結合E-Tag和LastModify等頭。 StringRequest request = new StringRequest(url, method); request.set ...


  • 1、Default模式,也是沒有設置緩存模式時的預設模式 這個模式實現http協議中的內容,比如響應碼是304時,當然還會結合E-Tag和LastModify等頭。
StringRequest request = new StringRequest(url, method);
request.setCacheMode(CacheMode.DEFAULT);
  • 2、 當請求伺服器失敗的時候,讀取緩存 請求伺服器成功則返回伺服器數據,如果請求伺服器失敗,讀取緩存數據返回。
StringRequest request = new StringRequest(url, method);
request.setCacheMode(CacheMode.REQUEST_NETWORK_FAILED_READ_CACHE);
  • 3、如果發現有緩存直接成功,沒有緩存才請求伺服器 ImageLoader的核心除了記憶體優化外,剩下一個就是發現把內地有圖片則直接使用,沒有則請求伺服器。

請求String,緩存String

StringRequest request = new StringRequest(url, method);
// 非標準Http協議,改變緩存模式為IF_NONE_CACHE_REQUEST_NETWORK
request.setCacheMode(CacheMode.IF_NONE_CACHE_REQUEST_NETWORK);

請求圖片,緩存圖片:

ImageRequest request = new ImageRequest(url, method);
request.setCacheMode(CacheMode.IF_NONE_CACHE_REQUEST_NETWORK);
  • 4、僅僅請求網路 無論如何也只會請求網路,也不支持http 304這種預設行為。
ImageRequest request = new ImageRequest(url, method);
request.setCacheMode(CacheMode.ONLY_REQUEST_NETWORK);
...
  • 5、僅僅讀取緩存 無論如何僅僅讀取緩存,不會請求網路和其它操作。
Request<Bitmap> request = NoHttp.createImageRequest(imageUrl);
request.setCacheMode(CacheMode.ONLY_READ_CACHE);

註意:如果開發者想先得到緩存再請求網路,開發者可以先發起一個僅僅讀取緩存的Request,然後發起一個僅僅請求網路的Request不過本人已經在準備NoHttp2.0了,到時候將會以一個全新的面貌和開發者們見面。

緩存模式支持緩存任何數據,因為NoHttp保存數據是轉為byte[],讀取數據時是把byte[]轉為開發者想要的數據,因此NoHttp的緩存可以支持任何自定義的Request

伺服器端:

 1 @WebServlet("/cache")
 2 public class CacheServlet extends BaseJsonServlet {
 3     private static final long serialVersionUID = 14646L;
 4 
 5     public CacheServlet() {
 6         super();
 7     }
 8 
 9     @Override
10     protected String onResponse(HttpServletRequest request, HttpServletResponse response) throws Exception {
11         System.out.println("返回新的數據");
12         return "NoHttp是最好用的Android網路框架。";
13     }
14 
15     /**
16      * 服務端本介面的數據是否過期,沒有過期則反悔相應頭304,如果過期,會重新返回數據
17      */
18     @Override
19     protected long getLastModified(HttpServletRequest req) {
20         // 這裡主要是告訴http框架我們的數據是否被修改過,或者說是否過期
21         String path = getServletContext().getRealPath("index.html");
22         return new File(path).lastModified();
23     }
24 
25 }

 

客戶端:

  1 public class CacheActivity extends Activity implements View.OnClickListener {
  2 
  3     /**
  4      * 標誌請求是一般協議下的
  5      */
  6     private final int nohttp_what_org = 0x01;
  7     /**
  8      * 標誌請求是請求失敗時讀取緩存
  9      */
 10     private final int nohttp_what_failed_read_cache = 0x02;
 11     /**
 12      * 標誌請求是僅僅讀取緩存的
 13      */
 14     private final int nohttp_what_only_read_cache = 0x03;
 15     /**
 16      * 測試緩存圖片
 17      */
 18     private final int nohttp_what_only_read_cache_image = 0x04;
 19 
 20     /**
 21      * 顯示請求數據
 22      */
 23     private TextView mTvResult;
 24     /**
 25      * 顯示請求圖片
 26      */
 27     private ImageView mIvImage;
 28 
 29     @Override
 30     protected void onCreate(Bundle savedInstanceState) {
 31         super.onCreate(savedInstanceState);
 32         setContentView(R.layout.activity_cache);
 33         findViewById(R.id.btn_request_org_cache).setOnClickListener(this);
 34         findViewById(R.id.btn_request_failed_read_cache).setOnClickListener(this);
 35         findViewById(R.id.btn_request_none_cache_request).setOnClickListener(this);
 36         findViewById(R.id.btn_request_only_read_cache).setOnClickListener(this);
 37         findViewById(R.id.btn_request_failed_read_cache_image).setOnClickListener(this);
 38         mTvResult = (TextView) findViewById(R.id.tv_result);
 39         mIvImage = (ImageView) findViewById(R.id.iv_image_cache);
 40     }
 41 
 42     private HttpCallBack<JSONObject> httpCallBack = new HttpCallBack<JSONObject>() {
 43         @Override
 44         public void onSucceed(int what, Response<JSONObject> response) {
 45             JSONObject jsonObject = response.get();
 46             String result = "";
 47             if (what == nohttp_what_org) {
 48                 result += "標準協議,";
 49             } else if (what == nohttp_what_failed_read_cache) {
 50                 result += "請求失敗的時候顯示緩存,";
 51             } else if (what == nohttp_what_only_read_cache) {
 52                 result += "沒有緩存時請求伺服器,";
 53             }
 54             result += "是否來自緩存:" + response.isFromCache() + "\n數據:";
 55             result += jsonObject.getString("data");
 56             mTvResult.setText(result);
 57         }
 58 
 59         @Override
 60         public void onFailed(int what, String url, Object tag, Exception exception, int responseCode, long networkMillis) {
 61         }
 62     };
 63 
 64     private HttpCallBack<Bitmap> imageHttpCallBack = new HttpCallBack<Bitmap>() {
 65         @Override
 66         public void onSucceed(int what, Response<Bitmap> response) {
 67             if (what == nohttp_what_only_read_cache_image) {
 68                 Bitmap bitmap = response.get();
 69                 mIvImage.setImageBitmap(bitmap);
 70                 mTvResult.setText("是否來自緩存:" + response.isFromCache());
 71             }
 72         }
 73 
 74         @Override
 75         public void onFailed(int what, String url, Object tag, Exception exception, int responseCode, long networkMillis) {
 76         }
 77     };
 78 
 79     @Override
 80     public void onClick(View v) {
 81         String url = "http://192.168.1.116/HttpServer/news";
 82         Request<JSONObject> request = new FastJsonRequest(url);
 83         if (v.getId() == R.id.btn_request_org_cache) {
 84             // 一般請求,走http標準協議
 85             url = "http://192.168.1.116/HttpServer/cache";
 86             request = new FastJsonRequest(url);
 87             request.setCacheMode(CacheMode.DEFAULT);// DEFAULT表示走Http標準協議,預設就是,這裡可以不用設置
 88             CallServer.getInstance().add(this, request, httpCallBack, nohttp_what_org, true, false, true);
 89         } else if (v.getId() == R.id.btn_request_failed_read_cache) {
 90             // 請求失敗的時候返回緩存
 91             request.setCacheMode(CacheMode.REQUEST_FAILED_READ_CACHE);// REQUEST_FAILED_READ_CACHE表示走請求失敗的時候讀取緩存
 92             CallServer.getInstance().add(this, request, httpCallBack, nohttp_what_org, true, false, true);
 93         } else if (v.getId() == R.id.btn_request_none_cache_request) {
 94             // 如果沒有緩存才去請求伺服器,否則使用緩存
 95             request.setCacheMode(CacheMode.IF_NONE_CACHE_REQUEST);// IF_NONE_CACHE_REQUEST表示沒有緩存的時候去請求伺服器
 96             CallServer.getInstance().add(this, request, httpCallBack, nohttp_what_org, true, false, true);
 97         } else if (v.getId() == R.id.btn_request_only_read_cache) {
 98             // 僅僅請求緩存,不請求伺服器
 99             url = "http://192.168.1.116/HttpServer/only";
100             request = new FastJsonRequest(url);
101             request.setCacheMode(CacheMode.ONLY_READ_CACHE);// ONLY_READ_CACHE表示僅僅請求緩存,不請求伺服器
102             CallServer.getInstance().add(this, request, httpCallBack, nohttp_what_org, true, false, true);
103         } else if (v.getId() == R.id.btn_request_failed_read_cache_image) {
104             // 如果沒有緩存才去請求伺服器,否則使用緩存,緩存圖片演示,這一點非常適合封裝一個自己的Imageloader是來使用
105             String imageUrl = "http://gtb.baidu.com/HttpService/get?p=dHlwZT1pbWFnZS9qcGVnJm49dmlzJnQ9YWRpbWcmYz10YjppZyZyPTMwMjEwODc5MTEsMTQxMDg4MDEwNgAAAA==";
106             Request<Bitmap> imageRequest = NoHttp.createImageRequest(imageUrl);
107             imageRequest.setCacheMode(CacheMode.IF_NONE_CACHE_REQUEST);
108             CallServer.getInstance().add(this, imageRequest, imageHttpCallBack, nohttp_what_only_read_cache_image, true, false, true);
109         }
110     }
111 
112 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、工具準備: 1.內網虛擬機Ubuntu12.04系統主機一臺,開放埠為:29999 2.遠程連接軟體:mobaxterm 二、開啟步驟: 1.查看埠狀態信息: netstat -antl | grep 29999 發現29999埠處於監聽狀態 3.配置sshd_config將預設埠22設 ...
  • 註冊碼product code(產品編碼): 4vkjwhfeh3ufnqnmpr9brvcuyujrx3n3le serial Number(序列號):226959 password(口令): xs374ca ...
  • 主要從以上篇幅來介紹mysql的一些知識點 一.Mysql簡介 MySQL是一個關係型資料庫管理系統,由瑞典MySQL AB 公司開發,目前屬於 Oracle 旗下產品。MySQL 是最流行的關係型資料庫管理系統之一,在 WEB 應用方面,MySQL是最好的 RDBMS (Relational Da ...
  • Hive的數據導入: 1.從本地文件系統中導入數據到Hive表 基礎語法1 : create table 表名(列名1 數據類型, 列名2 數據類型, … …) row format delimited fields terminated by '分隔符' stored as textfile 參數 ...
  • HDFS 與 Hbase HDFS容錯率很高,即便是在系統崩潰的情況下,也能夠在節點之間快速傳輸數據。HBase是非關係資料庫,是開源的Not-Only-SQL資料庫,它的運行建立在Hadoop上。HBase依賴於CAP定理(Consistency, Availability, and Partit... ...
  • 公司產品需要一個雷達圖來展示各維度的比重,網上找了一波,學到不少,直接自己上手來擼一記 無圖言虛空 簡單分析一波,確定雷達圖正幾邊形的 正五邊形 int count=5,分為幾個層數 4 層 int layerCount=4 主要這幾步,開擼! 自定義RadarView繼承View 確定需要使用的變 ...
  • xml java: ...
  • 一,數據的“濾波” 直接從加速度計獲得的原始數據,往往不能直接使用,而是需要去除一些干擾數據,這個過程稱為“濾波”。“濾波”一詞來源於無線電技術中對無線電信號的處理過程。事實上從數學角度而言它們是一樣的,它們都是某種採樣信號,這個“濾波”的過程很複雜,要通過傅里葉變換實現“濾波". 二,陀螺儀 加速 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...