在不知道进度的情况下更新 JProgressBar
我想使用 JProgressBar,但我没有任何进度衡量任务需要多长时间才能完成。这个想法是有一个进度条显示关闭过程的状态,但我不知道需要多长时间,而且我无法编辑执行关闭过程的类。
有没有办法在没有任何进度指示的情况下使用 JProgressBar?
I want to use a JProgressBar but I don't have any measurement of progress for how long the task will take to complete. The idea is to have a progress bar displaying the status of a shutdown process but I don't know how long it takes, and I have no way of editing the class that does the shutdown process.
Is there a way to use a JProgressBar without having any indication of the progress?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
setInstituteate(true)
。来自 javadocs:
Call
setIndeterminate(true)
.From the javadocs:
您可以拥有一个以不确定模式显示的
JProgressBar
,如 此处。默认动画是“弹跳器”,也就是说,进度指示器将在栏的两端之间来回移动,直到您停止为止。You can have a
JProgressBar
which displays in indeterminate mode, as described here. The default animation is a 'bouncer,' that is, the progress indicator will go back and forth between the two ends of the bar until you stop it.