如何制作一个JAVA小程序自动运行?
我有一个更新数据库的 JAVA 项目。
但我必须手动运行该项目以便更新数据库。 当我忘记的时候,那就太痛苦了,所以我的老板来找我,开始说了很多话。
我想导出一个 .jar 文件,该文件在 Windows 启动时运行,检查数据库是否已更新,如果没有,则更新它。
有什么办法可以做到这一点吗?
I have a JAVA project that updates a database.
But I have to manually run the project so the database becomes updated.
And when I forget, it's just a pain in the ass, so my boss comes to me and starts to say a lot of things.
I want to export a .jar file that runs when Windows starts, checks if the database is updated, and, if not, update it.
Is there any way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,如果您不是在浏览器中运行,那么您不需要小程序。
那么有两种方法可以做到这一点:
.bat
文件并将其放在 <代码>开始菜单>节目> Startup (实际上是C:\Documents and Settings\\Start Menu\Programs\Startup
First, if you are not running in a browser, then you don't need an applet.
Then there are two ways to do this:
.bat
file that callsjava -jar \path\to\your\jar\file.jar
and place it inStart Menu > Programs > Startup
(which is actuallyC:\Documents and Settings\<username>\Start Menu\Programs\Startup