我想创建一个java应用程序来改变Windows XP / 7上的笔记本电脑屏幕亮度。请帮忙
答案 0 :(得分:4)
正如其他人所说,没有任何官方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发现了我适应运行此命令的here powershell代码。
答案 1 :(得分:0)
我认为在Java中没有标准API可以做到这一点。
但似乎你可以在Windows中的.NET中完成它。看到: What API call would I use to change brightness of laptop (.NET)?
您始终可以使用JNI接口来调用用C ++编写的本机方法 - 因此这可能是一种解决方法。