作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我想在单击 array
中的按钮后在 textarea
中打印文本。应在特定时间间隔后打印元素。
我已经完成了以下操作,但没有得到所需的输出:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
final int[] arr = new int[10];
Timer t = new Timer();
for (int i = 0; i < arr.length; i++) {
final int j = i;
t.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
jTextArea1.append("" + arr[j] + "\n");
if (j == 0) {
cancel();
}
}
}, 1000, 1000);
}
}
期望的输出:应在特定时间间隔后打印元素当前输出:连续打印0
最佳答案
您正在迭代数组并为每个元素添加一个 TimerTask。为什么不反过来做呢?如果您使用的是 Java 5 或更高版本,则可以使用更高级的 ScheduledExecutorService。我还更改了代码以请求在 1000 毫秒后执行一次,而不是重复执行的 ScheduleAtFixedRate。
final int[] arr = new int[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
Runnable task = new Runnable () {
@Override
public void run() {
for (int i = 0; i < arr.length; i++) {
jTextArea1.append(String.format("%s%n", arr[j]));
}
}
}, 1000);
ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
ScheduledFuture<?> future = scheduler.schedule(task, 1000, TimeUnit.MILLISECONDS));
关于java - 如何在java中点击按钮时使用计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33346042/
我是一名优秀的程序员,十分优秀!