e802. creating a jprogressbar component with an unknown maximum.txt
来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 17 行
TXT
17 行
A progress bar with an unknown maximum typically displays an animation until the task is complete.
Note: The percentage display should not be enabled when the maximum is not known (e804 Displaying the Percentage Done on a JProgressBar Component).
// Create a horizontal progress bar
int min = 0;
int max = 100;
JProgressBar progress = new JProgressBar(min, max);
// Play animation
progress.setIndeterminate(true);
When information on the task's progress is available, the progress bar can be made determinate:
int value = 33;
progress.setValue(value);
progress.setIndeterminate(false);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?