4

我有一小段代码用于记录时间 - 非常简单,它每四分钟拍一张我的桌面照片,以便稍后我可以回顾我白天所做的事情 - 效果很好, 除非我连接到外接显示器 - 此代码仅拍摄我的笔记本电脑屏幕的屏幕截图,而不是我正在使用的更大的外接显示器 - 任何想法如何更改代码?我正在运行 OSX,以防万一……

import java.awt.AWTException;
import java.awt.Robot;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.*;
import javax.imageio.ImageIO;

class ScreenCapture {
    public static void main(String args[]) throws
        AWTException, IOException {
            // capture the whole screen
int i=1000;
            while(true){
i++; 
                BufferedImage screencapture = new Robot().createScreenCapture(
                        new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()) );

                // Save as JPEG
                File file = new File("screencapture"+i+".jpg");
                ImageIO.write(screencapture, "jpg", file);
try{
Thread.sleep(60*4*1000);
}
catch(Exception e){
e.printStackTrace();
}

            }
        }
}

按照给出的解决方案,我做了一些改进,对于那些感兴趣的人,代码正在https://codereview.stackexchange.com/questions/10783/java-screengrab进行代码审查

4

2 回答 2

10

有一个教程Java 多显示器屏幕截图显示了如何做到这一点。基本上你必须迭代所有屏幕:

GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice[] screens = ge.getScreenDevices();

for (GraphicsDevice screen : screens) {
 Robot robotForScreen = new Robot(screen);
 ...
于 2012-04-06T10:31:50.003 回答
0

我知道这是一个老问题,但在接受的答案上链接的解决方案可能不适用于某些多显示器设置(肯定是在 Windows 上)。

如果您以这种方式设置显示器,例如:[3] [1] [2]

这是正确的代码:

public class ScreenshotUtil {

    static public BufferedImage allMonitors() throws AWTException {
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice[] screens = ge.getScreenDevices();
        Rectangle allScreenBounds = new Rectangle();
        for (GraphicsDevice screen : screens) {
            Rectangle screenBounds = screen.getDefaultConfiguration().getBounds();
            allScreenBounds = allScreenBounds.union(screenBounds);
        }
        Robot robot = new Robot();
        return robot.createScreenCapture(allScreenBounds);;
    }
}
于 2017-02-06T12:58:42.780 回答