如何制作一个JAVA小程序自动运行?

发布于 2024-09-15 02:10:11 字数 175 浏览 5 评论 0原文

我有一个更新数据库的 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 技术交流群。

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

发布评论

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

评论(1

浊酒尽余欢 2024-09-22 02:10:11

首先,如果您不是在浏览器中运行,那么您不需要小程序。

那么有两种方法可以做到这一点:

  • 创建一个调用 java -jar \path\to\your\jar\file.jar 的 .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:

  • make a .bat file that calls java -jar \path\to\your\jar\file.jar and place it in Start Menu > Programs > Startup (which is actually C:\Documents and Settings\<username>\Start Menu\Programs\Startup
  • install as service (but this is rather complicated)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文