Simple as the title states: Can you use only Java commands to take a screenshot and save it? Or, do I need to use an OS specific program to take the screenshot and then grab it off the clipboard?

link|improve this question

I never knew it would be so simple. – jjnguy Sep 12 '08 at 18:00
feedback

3 Answers

up vote 25 down vote accepted

Believe it or not, you can actually use java.awt.Robot to "create an image containing pixels read from the screen." You can then write that image to a file on disk.

I just tried it, and the whole thing ends up like:

Rectangle screenRect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
BufferedImage capture = new Robot().createScreenCapture(screenRect);
ImageIO.write(capture, "bmp", new File(args[0]));

NOTE: This will only capture the primary monitor. See GraphicsConfiguration for multi-monitor support.

link|improve this answer
Wow - who would have thought. That is very very cool. – Michael Neale Sep 12 '08 at 5:16
I'd never come across java.awt.Robot. That's one impressive and useful class. – Free Wildebeest Sep 14 '08 at 23:59
I wonder if this is what screen sharing applications like Elluminate (elluminate.com) use. – Chris Wagner Apr 22 '10 at 22:25
Will it work even if I do not have console? – java_enthu Feb 21 at 14:03
feedback

Code for capturing screenshot in Java,

http://www.codinguide.com/2010/04/capture-screen-shot-from-java.html

link|improve this answer
feedback

http://web.archive.org/web/20090204074007/http://schmidt.devlib.org/java/save-screenshot.html

link|improve this answer
The reason I didn't accept your answer was because it was someone elses code. – jjnguy Sep 12 '08 at 17:59
feedback

Your Answer

 
or
required, but never shown

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