我有一个应用程序可以下载并解压缩一些文件,我每秒都会使用System.currentTimeMillis()来发布我的进度来比较已经过的时间。
我的问题是,代码似乎对每个写入或存档的字节做了太多工作,获取当前时间并与开始时间进行比较,以显示或不显示。我的问题是,有一种更好的方法可以在不失性能的情况下实现它吗?
我的代码用于比较下载时间:
protected void afterWrite(int n) throws IOException {
super.afterWrite(n);
if (DownloadAndUnzipService.canceled) {
throw new IOException();
}
if (MainViewActivity.isPaused) {
throw new IOException();
}
bytesWritten += n;
showTime = System.currentTimeMillis();
if (showTime - startTime > 1000) {
Bundle resultData = new Bundle();
resultData.putLong("bytesWritten", bytesWritten);
resultData.putString("typeDownload", typeDownload);
resultData.putInt("imageIndex", index);
receiver.send(Constants.UPDATE_PROGRESS, resultData);
startTime = showTime;
}
}
我的代码用于比较解压缩时间:
...
if (showTime - startTime > 1000) {
Bundle resultData = new Bundle();
resultData.putInt("progress", (int) (filesWritten * 100 / fileLength));
resultData.putInt("imageIndex", i);
resultData.putString("typeDownload", typeDownload);
receiver.send(Constants.UPDATE_ZIP_PROGRESS, resultData);
startTime = showTime;
}
ze = zis.getNextEntry();
}
答案 0 :(得分:1)
使用Timer
API。 Timer允许在指定的时间后重复执行特定的代码集。可能适合你的情况。
Timer t = new Timer();
t.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
//Called each time when 1000 milliseconds (1 second) (the period parameter)
}
},
//Set how long before to start calling the TimerTask (in milliseconds)
0,
//Set the amount of time between each execution (in milliseconds)
1000);