如何从Java应用程序更改笔记本电脑的屏幕亮度?

我想创建一个java应用程序来改变Windows XP / 7上的笔记本电脑屏幕亮度.请帮忙

最佳答案
正如其他人所说,没有任何官方API可供使用.但是,使用Windows Powershell(我相信它附带的Windows,因此无需下载任何内容)和WmiSetBrightness,可以创建一个简单的解决方法,适用于所有带签证或以后安装的Windows PC.

您需要做的就是将此类复制到您的工作区:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class BrightnessManager {
    public static void setBrightness(int brightness)
            throws IOException {
        //Creates a powerShell command that will set the brightness to the requested value (0-100),after the requested delay (in milliseconds) has passed. 
        String s = String.format("$brightness = %d;",brightness)
                + "$delay = 0;"
                + "$myMonitor = Get-WmiObject -Namespace root\\wmi -Class WmiMonitorBrightnessMethods;"
                + "$myMonitor.wmisetbrightness($delay,$brightness)";
        String command = "powershell.exe  " + s;
        // Executing the command
        Process powerShellProcess = Runtime.getRuntime().exec(command);

        powerShellProcess.getOutputStream().close();

        //Report any error messages
        String line;

        BufferedReader stderr = new BufferedReader(new InputStreamReader(
                powerShellProcess.getErrorStream()));
        line = stderr.readLine();
        if (line != null)
        {
            System.err.println("Standard Error:");
            do
            {
                System.err.println(line);
            } while ((line = stderr.readLine()) != null);

        }
        stderr.close();

    }
}

然后打电话

BrightnessManager.setBrightness({brightness});

其中{brightness}是要设置屏幕显示的亮度,0为最暗支持亮度,100为最亮.

非常感谢anquegi为PowerShell代码找到here,我适合运行此命令.

相关文章

ArrayList简介:ArrayList 的底层是数组队列,相当于动态数组。与 Java 中的数组相比,它的容量能动态增...
一、进程与线程 进程:是代码在数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位。 线程...
本文为博客园作者所写: 一寸HUI,个人博客地址:https://www.cnblogs.com/zsql/ 简单的一个类...
#############java面向对象详解#############1、面向对象基本概念2、类与对象3、类和对象的定义格式4、...
一、什么是异常? 异常就是有异于常态,和正常情况不一样,有错误出错。在java中,阻止当前方法或作用域...
Collection接口 Collection接口 Collection接口 Collection是最基本的集合接口,一个Collection代表一组...