使用 Java 关闭 Windows

发布于 2024-09-04 09:11:57 字数 46 浏览 4 评论 0原文

是否可以使用 Java 以编程方式关闭 Windows?

干杯

Is it possible to shutdown Windows programmatically with Java?

Cheers

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

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

发布评论

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

评论(4

秋千易 2024-09-11 09:11:57
String shutdownCmd = "shutdown -s";
Process child = Runtime.getRuntime().exec(shutdownCmd);

有关 shutdown 命令 的更多信息,供您查看

一些其他可能感兴趣的命令行选项对你来说

-i 显示GUI界面,必须是第一个选项

-l 注销(不能与 -m 选项一起使用)

-r 关闭并重新启动计算机

-m \计算机名(远程计算机关闭/重新启动/中止)

-t xx 将关机超时设置为 xx 秒

-c "comment" 关闭注释(最多 127 个字符)


当然,如果您不想采用这种方法,可以下载一些库来实现此目的。其中一个示例是 Java Windows 关闭函数

根据他们的 SourceForge 页面:

JWSF - Java Windows 关闭函数 API 允许 java 应用程序在大多数 Windows 操作系统上执行以下操作:关闭、重新启动、注销、锁定工作站。 JWSF 使用 JNI 进行本机调用。 JWSF 受 LGPL 许可约束

String shutdownCmd = "shutdown -s";
Process child = Runtime.getRuntime().exec(shutdownCmd);

More information on the shutdown command for your viewing pleasure

Some other command line options that may be of interest to you are

-i Display GUI interface, must be the first option

-l Log off (cannot be used with -m option)

-r Shutdown and restart the computer

-m \computername (Remote computer to shutdown/restart/abort)

-t xx Set timeout for shutdown to xx seconds

-c "comment" Shutdown comment (maximum of 127 characters)


Of course, if you prefer to not do it this method, there are libraries you can download to achieve this. One example of this would be Java Windows Shutdown Functions.

According to their SourceForge page:

JWSF - Java Windows Shutdown Functions API allows java applications to perform the following operations on most windows operating system, shutdown, restart, logoff, lock workstation. JWSF makes native calls using JNI. JWSF is subject to the LGPL license

妄司 2024-09-11 09:11:57

运行命令“shutdown -s”。

编辑:像这样的东西:

Process p = Runtime.getRuntime().exec("shutdown -s");

Run the command "shutdown -s".

Edit: Something like this:

Process p = Runtime.getRuntime().exec("shutdown -s");
千纸鹤 2024-09-11 09:11:57

这也可以使用 WMI 来完成,例如通过 JACOB:

import java.util.Enumeration;

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.EnumVariant;
import com.jacob.com.Variant;

public abstract class Shutdown {

    public static void main(String[] args) {
        ComThread.InitMTA();
        try {
            ActiveXComponent wmi = new ActiveXComponent("winmgmts:{impersonationLevel=impersonate,(Shutdown)}!\\\\.");
            Variant instances = wmi.invoke("InstancesOf", "Win32_OperatingSystem");
            Enumeration<Variant> en = new EnumVariant(instances.getDispatch());
            ActiveXComponent os =
                new ActiveXComponent(en.nextElement().getDispatch());
            os.invoke("Win32Shutdown", 1, 0);
        } finally {
            ComThread.Release();
        }
    }

}

This can also be done using WMI, for example via JACOB:

import java.util.Enumeration;

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.EnumVariant;
import com.jacob.com.Variant;

public abstract class Shutdown {

    public static void main(String[] args) {
        ComThread.InitMTA();
        try {
            ActiveXComponent wmi = new ActiveXComponent("winmgmts:{impersonationLevel=impersonate,(Shutdown)}!\\\\.");
            Variant instances = wmi.invoke("InstancesOf", "Win32_OperatingSystem");
            Enumeration<Variant> en = new EnumVariant(instances.getDispatch());
            ActiveXComponent os =
                new ActiveXComponent(en.nextElement().getDispatch());
            os.invoke("Win32Shutdown", 1, 0);
        } finally {
            ComThread.Release();
        }
    }

}
时光无声 2024-09-11 09:11:57

如果你想在某个时间关闭它,请附加 -t 参数(以秒为单位)。

五秒钟:

String shutdownCmd = "shutdown -s -t5";

If you want to shutdown it in certain time append -t parameter (in seconds).

For five seconds:

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