你到sun.com.cn上去看看,有这样一文章的,

解决方案 »

  1.   

    给分吧
    try {
            Robot robot = new Robot();
        
            // Capture a particular area on the screen
            int x = 100;
            int y = 100;
            int width = 200;
            int height = 200;
            Rectangle area = new Rectangle(x, y, width, height);
            BufferedImage bufferedImage = robot.createScreenCapture(area);
        
            // Capture the whole screen
            area = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
            bufferedImage = robot.createScreenCapture(area);
        } catch (AWTException e) {
        } Related Examples