douliao8402 2018-03-07 15:46
浏览 517
已采纳

如何在android中存储json数据以便离线

My application get JSON data from server. If I use my own json api , data is loaded only in internet connection. But if I use this api (https://pixabay.com/api/?key=5303976-fd6581ad4ac165d1b75cc15b3&q=kitten&image_type=photo&pretty=true), data is displayed also in offline, once application got internet connection.

The same code, one json url is loaded also after the loss of internet connectivity, another one's data doesn't display after internet disconnection. How to store data in android cache from server-side as this URL (https://pixabay.com/api/?key=5303976-fd6581ad4ac165d1b75cc15b3&q=kitten&image_type=photo&pretty=true).

My api (api1.php)

<?php 
    require("includes/connect.php");
header('Content-Type: application/json');

    $query="SELECT * FROM implink";
$result = $con->query('SELECT id,heading,content FROM implink');
$rows = $result->fetchAll(PDO::FETCH_ASSOC);
header('Content-Type: application/json;charset=utf-8');
echo json_encode(['info' => $rows],
        JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK);
?> 
  • 写回答

1条回答 默认 最新

  • dongrendang6566 2018-03-07 16:17
    关注

    My first suggestion is to not publish your API key. Pixabay may be free, but sharing API keys on the internet will put you infrastructure in danger.

    Upon looking up the request it seems Pixabay is setting some headers that could affect your cache.

    Access-Control-Max-Age → 86400
    Cache-Control → max-age=86400
    Content-Type → application/json
    

    Check out the Android documentation on HttpResponseCache It outlines how you can force a cache response after setting up the HttpResponseCache.

         try {
             connection.addRequestProperty("Cache-Control", "only-if-cached");
             InputStream cached = connection.getInputStream();
             // the resource was cached! show it
         } catch (FileNotFoundException e) {
             // the resource was not cached
         }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序