我无法让它入睡,我希望它在继续之前暂停一秒钟。
public static void main(String[] args) {
//supply your own path instead of using this one
String path = "\\image.JPG";
for(;;)
SPI.INSTANCE.SystemParametersInfo(
new UINT_PTR(SPI.SPI_SETDESKWALLPAPER),
new UINT_PTR(0),
path,
new UINT_PTR(SPI.SPIF_UPDATEINIFILE | SPI.SPIF_SENDWININICHANGE));
}
当我尝试添加 Thread.sleep(1000); 它给了我一个错误,无法访问的代码。