gpt4 book ai didi

Android - ION 缓存结果

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:53:24 26 4
gpt4 key购买 nike

我目前正在编写一个小应用程序,通过下载 last.fm 生成的 XML 文件来显示我本地酒吧当前正在播放的歌曲。

我遇到的问题如下:在线与 xml 同步时,它没有获得新版本,而是一遍又一遍地使用第一个下载的 xml。同时在随机浏览器中打开此链接确实会给出正确的结果。可能是缓存或延迟下载,我不知道。我也不知道这是否与 ION 相关。

我目前已经用一些代码修复了这个问题,这些代码在下载之前从这个应用程序中清除了整个缓存,而且效果很好,但是因为我可能想要扩展这个应用程序,所以我必须找到另一种方法来解决这个问题。

我的代码:

public class MainActivity extends Activity implements OnClickListener {

private final static String nonXML = {the url to my xml-file}

private String resultXml;

private TextView artistTextView, songTextView, albumTextView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

artistTextView = (TextView) findViewById(R.id.artistTextView);
songTextView = (TextView) findViewById(R.id.songTextView);
albumTextView = (TextView) findViewById(R.id.albumTextView);
Button mainButton = (Button) findViewById(R.id.mainButton);

mainButton.setOnClickListener(this);
}

@Override
protected void onResume() {
super.onResume();
update();
}

@Override
public void onClick(View v) {
update();
}

private void update() {
deleteCache(this);
getXML();

XMLToClass convertor = new XMLToClass();
NonPlaylist non = convertor.convert(resultXml);

artistTextView.setText(non.getArtist());
songTextView.setText(non.getSong());
albumTextView.setText(non.getAlbum());
}

private void getXML() {
try {
Ion.with(getBaseContext(), nonXML)
.asString()
.setCallback(new FutureCallback<String>() {
@Override
public void onCompleted(Exception e, String result) {
resultXml = result;
}
}).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}

public static void deleteCache(Context context) {
try {
File dir = context.getCacheDir();
if (dir != null && dir.isDirectory()) {
deleteDir(dir);
}
} catch (Exception e) {}
}

public static boolean deleteDir(File dir) {
if (dir != null && dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
boolean success = deleteDir(new File(dir, children[i]));
if (!success) {
return false;
}
}
}
return dir.delete();
}
}

最佳答案

根据 http 规范,Ion 实际上会缓存。如果您想忽略缓存,请在构建请求时使用 .noCache() 方法。

提示:您还可以在 ion 请求中打开详细日志记录,以查看在缓存等方面发生了什么。

.setLogging("MyTag", Log.VERBOSE)

关于Android - ION 缓存结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23130226/

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