在java中执行linux命令

发布于 2024-10-12 10:27:31 字数 71 浏览 3 评论 0原文

我想在java中执行命令crontab file.txt

程序是什么?...

i want to execute the command crontab file.txt in java.

What is the procedure...?

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

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

发布评论

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

评论(4

寒尘 2024-10-19 10:27:31

ProcessBuilder 是您的朋友。

ProcessBuilder is your friend.

小…楫夜泊 2024-10-19 10:27:31

看一下 Runtime.getRuntime().exec("contrab file.txt")

Take a look at Runtime.getRuntime().exec("contrab file.txt")

淡写薰衣草的香 2024-10-19 10:27:31
Runtime.getRuntime().exec("crontab file.txt")
Runtime.getRuntime().exec("crontab file.txt")
杯别 2024-10-19 10:27:31

Linux命令本质上是程序。您只需使用 Runtime.getRuntime().exec("crontab file.txt"); 即可运行它们;

linux commands are essentially programs. You can simply run them using Runtime.getRuntime().exec("crontab file.txt");

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