Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Is there a way to take a screenshot using Java and save it to some sort of image?

How to take a screenshot in Java?

share|improve this question
I answered this question here: stackoverflow.com/a/10796047/876497 – DejanLekic May 29 '12 at 9:05

marked as duplicate by Raedwald, andrewsi, ЯegDwight, Jonathan Leffler, Deanna Oct 9 '12 at 23:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 18 down vote accepted

Use Robot#createScreenCapture().

BufferedImage image = new Robot().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
ImageIO.write(image, "png", new File("/screenshot.png"));
share|improve this answer
4  
Thanks bro... I will check it – Adesara Dec 20 '10 at 14:21

You can find this code useful. this code will take screenshot in every 10 seconds

import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;


public class screen2image
{
    SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd hh mm ss a");

    public void robo() throws Exception
    {
        Calendar now = Calendar.getInstance();
        Robot robot = new Robot();
        BufferedImage screenShot = robot.createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
        ImageIO.write(screenShot, "JPG", new File("d:\\"+formatter.format(now.getTime())+".jpg"));
        System.out.println(formatter.format(now.getTime()));
    }

    public static void main(String[] args) throws Exception
    {
        screen2image s2i = new screen2image();
        while(1==1)
        {
            s2i.robo();
            Thread.sleep(10000);
        }
    }
}

More info on my website: Take Screenshot in Java

share|improve this answer
1  
Please note it is required that you disclose whenever you link to your own website – Andrew Barber Oct 9 '12 at 19:56
Okay thanks....Andrew Barber.. – Raj Gupta Oct 9 '12 at 20:27
I edited in a disclosure for you. – Andrew Barber Oct 9 '12 at 20:29
I Appreciate your help...thanks again.. – Raj Gupta Oct 9 '12 at 20:36

Not the answer you're looking for? Browse other questions tagged or ask your own question.