估计读取文件的进度

发布于 2024-11-08 14:45:24 字数 73 浏览 0 评论 0原文

我的应用程序需要显示进度,但是由于性能原因,读取文件两次是第一次计算总数的选项。总数的合理估计是多少?我应该根据文件大小进行估计吗?

my application needs to display progress, however reading the file twice is where the first pass counts the total is not an option due to performance reason. What's a reasonable estimate for the total? should I estimate based on file size?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妳是的陽光 2024-11-15 14:45:24

是的,基于文件大小。如果您知道总大小和处理的字节数,则可以估计剩余时间。也就是说,如果该处理是某种线性处理。

如果不是,并且文件的某些部分需要更长的时间来读取和处理,则很难做出好的估计。在这种情况下,最好显示一些等待光标,或者(如果需要很长时间)让用户玩一个小游戏来消磨时间。 :)

就像你说的,运行一个进程一次,只是为了能够在显示进度条的同时再次运行它,这绝对不是一个好主意。但你不会是第一个...

Yes, base it on file size. If you know the total size and the amount of bytes processed, you can make an estimate of the remaining time. That is, if this processing is some lineair process.

If it isn't and some portions of the file take much much longer to read and process, it is hard to make a good estimate. In that case, it is better to show some waiting cursor, or (if it takes long) let the user play a little game to kill the time. :)

Like you said, it is never a good idea to run a process once, just to be able to run it again while showing a progress bar. But you wouldn't be the first...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文