在netbeans中安装定时器组件?

发布于 2024-11-05 13:14:54 字数 81 浏览 1 评论 0原文

我喜欢在 netbeans 中安装一个计时器组件,就像 Visual Studio 中 VB.net 的计时器组件一样,但我似乎在任何地方都找不到。

id like to install a timer component in netbeans much like the timer component for VB.net in visual studio but i can't seem to find one anywhere.

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

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

发布评论

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

评论(1

初与友歌 2024-11-12 13:14:54

有一些组件不能直接从 Netbeans 的组件窗格添加。即使我在不​​得不使用计时器时也遇到了同样的问题,但我没有办法找到一个。于是我开始自己写代码。用代码方法将计时器添加到应用程序中并不困难,因为它不需要窗口中的任何位置。您只需创建一个计时器对象并在代码中使用它,就这么简单。如果您需要知道如何创建计时器,可以查看 摆动计时器

--编辑--
我没有 Swing 计时器的工作示例,但下面的代码显示了 java util 计时器

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class timer_utility {
    public static void start_timer() {
        final Timer _iTimer;        
        _iTimer = new Timer(true);
        _iTimer.schedule(new TimerTask() {
            @Override
            public void run() {
                //timer task to be executed goes here.
            }
        }, 1000, 1000);         
    }
}

--编辑 --

看看这个 链接

There are few components that cannot be added directly from the component pane of netbeans. Even i had the same problem when i had to work with the timers but there is no way for me to find one. So i started writing codes on my own. And its not hard to add timers into your application in code method as it does not need any location in the window. You just have to create a timer object and use it in your codes as simple as that. If you need to know how to create timers you can have a look at swing timers

--EDIT--
I dont have working example of swing timer but the code below shows the java util timer

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class timer_utility {
    public static void start_timer() {
        final Timer _iTimer;        
        _iTimer = new Timer(true);
        _iTimer.schedule(new TimerTask() {
            @Override
            public void run() {
                //timer task to be executed goes here.
            }
        }, 1000, 1000);         
    }
}

--EDIT--

Have a look at this link

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