gpt4 book ai didi

android - HttpResponseCache 不缓存文件

转载 作者:太空狗 更新时间:2023-10-29 14:22:58 26 4
gpt4 key购买 nike

我正在尝试缓存此文件:http://media.admob.com/sdk-core-v40.js与 HttpResponseCache。基本上我调用了 getFileFromUrl 函数两次,以便第一次从互联网获取资源,第二次从缓存中获取资源。

但是,对于这两种方法,它都会给出此错误:“资源未缓存!java.io.FileNotFoundException:http://media.admob.com/sdk-core-v40.js”。这是否意味着该文件未被缓存并且无法访问它?代码有什么问题?

enableHttpCaching();

getFileFromURL(url);
getFileFromURL(url);


public static void getFileFromURL(String src) {
try {
URL url = new URL(src);
HttpURLConnection connection=(HttpURLConnection)url.openConnection();
connection.setUseCaches(true);
connection.addRequestProperty("Cache-Control", "only-if-cached" );
InputStream input = connection.getInputStream();
System.out.println("The resource was cached!");
}catch (FileNotFoundException e) {
System.out.println("The resource was not cached!" + e);
}catch (IOException e) {
e.printStackTrace();
}
}

最佳答案

从表面上看,这不是缓存,因为响应文件有

Cache-Control:max-age=0

关于android - HttpResponseCache 不缓存文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15112105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com