如何从java代码以管理员身份运行(对于mac osx)?

发布于 2024-10-22 05:09:39 字数 258 浏览 1 评论 0原文

我正在尝试使用 java 代码在我的 mac 操作系统上运行命令:-

Process p = Runtime.getRuntime().exec(command);

这是命令

sudo installer -pkg /Users/sumish/Desktop/aster.mpkg -target /Applications

当我从终端运行该命令时,它会提示我输入管理员密码

我如何从我的代码中执行此操作?

I am trying to run a command on my mac os with java code :-

Process p = Runtime.getRuntime().exec(command);

This is the command

sudo installer -pkg /Users/sumish/Desktop/aster.mpkg -target /Applications

When I run the command from terminal it prompts me for a administrator password

How can I do this from my code?

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

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

发布评论

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

评论(1

安人多梦 2024-10-29 05:09:39

我认为您的 java 进程应该以特权启动,以便您分叉并启动另一个需要管理员权限的进程。

因此,运行包含 Process p = Runtime.getRuntime().exec(command); 的代码的 JVM 应使用 sudo java 命令启动。

I think your java process should be started with privileges in order for you to fork and launch another process which requires administrator rights.

So, the JVM which runs the code containing Process p = Runtime.getRuntime().exec(command); should be started using a sudo java command.

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