【发布时间】:2013-11-25 20:54:08
【问题描述】:
请告诉我如何以编程方式更改 Mac OS X 中的桌面背景? 我找到了,但对于 windows https://stackoverflow.com/a/12212368/2838676
【问题讨论】:
请告诉我如何以编程方式更改 Mac OS X 中的桌面背景? 我找到了,但对于 windows https://stackoverflow.com/a/12212368/2838676
【问题讨论】:
public void setWallpaper(File file)
throws Exception {
String as[] = {
"osascript",
"-e", "tell application \"Finder\"",
"-e", "set desktop picture to POSIX file \"" + file.getAbsolutePath() + "\"",
"-e", "end tell"
};
Runtime runtime = Runtime.getRuntime();
Process process;
process = runtime.exec(as);
}
学分
【讨论】: