我想创建一个 java 应用程序来更改 windows xp/7 上的笔记本电脑屏幕亮度。请帮忙
问问题
4272 次
2 回答
6
正如其他人所说,没有任何官方 API 可供使用。但是,使用 Windows Powershell(我相信 Windows 随附,因此无需下载任何东西)和WmiSetBrightness,可以创建一个简单的解决方法,该解决方法应该适用于所有安装了 visa 或更高版本的 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 代码,我在这里找到了它来运行这个命令。
于 2015-12-03T17:50:37.903 回答
0
我认为在 Java 中没有标准的 API 可以做到这一点。
但似乎你可以在 Windows 的 .NET 中做到这一点。请参阅: 我将使用什么 API 调用来更改笔记本电脑 (.NET) 的亮度?
您始终可以使用 JNI 接口来调用用 C++ 编写的本机方法 - 所以这可能是一种解决方法。
于 2013-04-08T13:39:33.473 回答