我使用Volley库来获取每5秒更改一次的json数据, 如果服务器中发生更改,我希望Method更新应用程序中的数据。
答案 0 :(得分:0)
您可以创建一个字符串来存储json数据。然后将其设置为每五秒钟将其与您拥有的第一个字符串进行比较。并且,如果该布尔方法为false,则将数据写入应用程序。
String json = "{
"Item":"potato"
}
timed command code
String newjson = //your read in code here
if(string json != newjson)
{
json = newjson
//write it to your app here
}
希望这会有所帮助,因为您没有任何疑问,我无法提供直接代码。