Run Java console app as a daemon (background)(将 Java 控制台应用程序作为守护进程运行(后台))
问题描述
我开发了一个 Java 控制台应用程序,当启动时,打开一个控制台窗口并保持在前台,我想在后台启动该应用程序.
I've developed a Java console application that when start, open a console window and remain in foreground, i want to start that application in background .
现在我通过这个命令行启动应用程序:
Now i launch the application by this command line :
java -jar myapp.jar
有没有办法实现这种行为?更改命令行参数就足够了,或者我需要对我的代码进行一些更改?
Is there a way to achieve this behaviour ? It's enough change the command line parameter or i need to do some change on my code ?
推荐答案
答案取决于操作系统.
*nix: <your command> &
Windows: (opens a new console): start <your command>
Windows: (doesn't open a new console): start /b <your command>
这篇关于将 Java 控制台应用程序作为守护进程运行(后台)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Java 控制台应用程序作为守护进程运行(后台)


- Jersey REST 客户端:发布多部分数据 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01