Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个java包,我想让我的程序每天晚上0点自动运行,我该怎么做?
通常你有2个解决方案:
您可以在自己的操作系统中进行安排。在 *nix 上,有cron。我不确定在 Windows 中使用什么。
或者您可以制定自己的 java 程序计划:在运行它时,它会设置一个时间以在特定时间执行您的任务。
您可以使用Thread.sleep()从现在到午夜的时间,但这是穷人的解决方案。Quartz是你的人,因为它可以安排你的任务。
Thread.sleep()
如果您选择调度路径,您不能忘记在操作系统启动时运行您的应用程序
试图在我的网页上打印这个:
<?php // Usage: $master=new WebSocket("localhost",12345); class WebSocket{ var $master; var $sockets = array(); var $users = a