NoHttp封裝--03 緩存

来源: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     @Override
 43     public void onClick(View v) {
 44         if (v.getId() == R.id.btn_request_org_cache) {
 45             // 一般請求,走http標準協議
 46             String url = "http://192.168.1.116/HttpServer/cache";
 47             Request<JSONObject> request = new FastJsonRequest(url);
 48             // 因為NoHttp本身就是RESTFUL風格的標準Http協議,所以這裡不用設置或者設置為DEFAULT
 49             request.setCacheMode(CacheMode.DEFAULT);
 50             CallServer.getInstance().add(this, request, callBack, nohttp_what_org, true, false, true);
 51         } else if (v.getId() == R.id.btn_request_failed_read_cache) {
 52             // 請求失敗的時候返回緩存
 53             String url = "http://192.168.1.116/HttpServer/cache";
 54             Request<JSONObject> request = new FastJsonRequest(url);
 55             // 非Http的標準協議,需要設置為REQUEST_FAILED_READ_CACHE
 56             request.setCacheMode(CacheMode.REQUEST_FAILED_READ_CACHE);
 57             CallServer.getInstance().add(this, request, callBack, nohttp_what_failed_read_cache, true, false, true);
 58         } else if (v.getId() == R.id.btn_request_none_cache_request) {
 59             // 如果沒有緩存才去請求伺服器,否則使用緩存
 60             String url = "http://192.168.1.116/HttpServer/cache";
 61             Request<JSONObject> request = new FastJsonRequest(url);
 62             // 非Http的標準協議,需要設置為IF_NONE_CACHE_REQUEST
 63             request.setCacheMode(CacheMode.IF_NONE_CACHE_REQUEST);
 64             CallServer.getInstance().add(this, request, callBack, nohttp_what_only_read_cache, true, false, true);
 65         } else if (v.getId() == R.id.btn_request_only_read_cache) {
 66             // 僅僅請求緩存,不請求伺服器
 67             String url = "http://192.168.1.116/HttpServer/cache";
 68             Request<JSONObject> request = new FastJsonRequest(url);
 69             // 非Http的標準協議,需要設置為ONLY_READ_CACHE
 70             request.setCacheMode(CacheMode.ONLY_READ_CACHE);
 71             CallServer.getInstance().add(this, request, callBack, nohttp_what_only_read_cache, true, false, true);
 72         } else if (v.getId() == R.id.btn_request_failed_read_cache_image) {
 73             // 如果沒有緩存才去請求伺服器,否則使用緩存,緩存圖片演示,這一點非常適合封裝一個自己的Imageloader是來使用
 74             Request<Bitmap> request = NoHttp.createImageRequest("http://image.tianjimedia.com/uploadImages/2013/214/CN267OUS22LM.jpg");
 75             request.setCacheMode(CacheMode.REQUEST_FAILED_READ_CACHE);
 76             CallServer.getInstance().add(this, request, imageBack, nohttp_what_only_read_cache_image, true, false, true);
 77         }
 78     }
 79 
 80     /**
 81      * 結束圖片的請求結果
 82      */
 83     private HttpCallBack<Bitmap> imageBack = new HttpCallBack<Bitmap>() {
 84         @Override
 85         public void onSucceed(int what, Response<Bitmap> response) {
 86             mIvImage.setImageBitmap(response.get());
 87             mTvResult.setText("請求成功,是否來自緩存:" + response.isFromCache());
 88         }
 89 
 90         @Override
 91         public void onFailed(int what, String url, Object tag, Exception exception, int responseCode, long networkMillis) {
 92             mIvImage.setImageResource(R.drawable.ic_launcher);
 93             mTvResult.setText("請求失敗");
 94         }
 95     };
 96 
 97     /**
 98      * 處理JSONObject的請求結果
 99      * 
100      * @param what 是哪個請求
101      * @param response 請求對應的響應結果
102      */
103     private void handlerResponse(int what, Response<JSONObject> response) {
104         String result = null;
105         if (what == nohttp_what_org) {
106             result = "一般請求,";
107         } else if (what == nohttp_what_failed_read_cache) {
108             result = "請求失敗時返回緩存,";
109         } else if (what == nohttp_what_only_read_cache) {
110             result = "僅僅請求緩存,";
111         }
112         result += "請求是否來緩存" + response.isFromCache() + ";結果是:" + response.get().getString("data");
113         mTvResult.setText(result);
114     }
115 
116     /**
117      * 接受JSONObject的請求結果
118      */
119     private HttpCallBack<JSONObject> callBack = new HttpCallBack<JSONObject>() {
120 
121         @Override
122         public void onSucceed(int what, Response<JSONObject> response) {
123             handlerResponse(what, response);
124         }
125 
126         @Override
127         public void onFailed(int what, String url, Object tag, Exception exception, int responseCode, long networkMillis) {
128             mTvResult.setText("請求失敗");
129         }
130     };
131 
132 }

 


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

-Advertisement-
Play Games
更多相關文章
  • Linux系統初學-第三課 Linux網路配置 1.動態IP配置 配置文件路徑 /etc/sysconfig/network-scripts/ ls查看網卡eth0,其中HWADDR值得獲取:ifconfig eht0 | grep HWaddr,保存之後,service network resta ...
  • 在處理一次線上問題時,需要遍歷一張玩家信息表,看單個account是否存在多個entity。使用aid_playerid_dict建立aid到playerid的映射,遍歷過程中,發現同一個aid會出現兩(多)次,沒有細看playerid,以為是一個account存在多個entity。 仔細看log, ...
  • 一 、介紹 二 、插入數據INSERT 三 、更新數據UPDATE 四 、刪除數據DELETE 五 、查詢數據SELECT 六 、許可權管理 一、 介紹 MySQL數據操作: DML 在MySQL管理軟體中,可以通過SQL語句中的DML語言來實現數據的操作,包括 本節內容包括: 插入數據更新數據刪除數 ...
  • 一、Oracle下載 官網地址:http://www.oracle.com/technetwork/database/enterprise edition/downloads/index.html 百度網盤:鏈接: https://pan.baidu.com/s/1q2vSPlHk_g1zLSANY ...
  • 背景 當站點的規模不斷膨脹,這給資料庫帶來巨大的查詢壓力,單單資料庫性能優化已經是不夠的,需對資料庫進行伸縮擴展。有三種方式: 1、資料庫主從 2、數據表分庫(垂直分區) 3、數據分區(水平分區) PS:事實上,很多大規模的站點基本上經歷了從簡單主從複製到垂直分區,再到水平分區的步驟。 資料庫主從 ...
  • 將數據導入 oracle 的方法應該很多 , 對於不同需求有不同的導入方式 , 最近使用oracle的sqlldr命令 導入資料庫數據感覺是個挺不錯的技術點 。 使用sqlldr命令 將文本文件導入 oracle中大致需要兩步 : 第一步:編寫ctl控制文件 Load data --裝載數據(第二步 ...
  • 最的mysql在裝的時候就可以設置 ,但是低版本的好像不行,需要在裝了以後才能設置。 mac下,mysql5.7.18連接出錯,錯誤信息為:Access denied for user 'root'@'localhost' (using password: YES) ()裡面的為shell中輸入的命 ...
  • 在ubuntu系統中操作命令:登錄:mysql -uroot -p啟動:service mysql start停止:service mysql stop重啟:service mysql restart 創建資料庫:create database 資料庫名字 charset = utf8;刪除資料庫: ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...