此刻我正在使用此代码。当设备没有互联网(它不使用缓存)时,它工作得很好但是当我更新txt文件时,它不会在应用程序中更新它,它使用前一个。
URL url = new URL("http://www.myhost.com/ygs/somefile.txt");
URLConnection urlConnection = url.openConnection();
urlConnection.setUseCaches(false);
我该怎么办?
答案 0 :(得分:3)
将随机数或时间字符串添加到查询字符串URL
url = new URL("http://www.myhost.com/ygs/somefile.txt?r="+Math.random());