views:

134

answers:

1

I am working on screen capturing tool. Currently my requirement is to capture screen shot of current screen, which can be extended to screen cast (video) etc. So just want to know which is best (open source/ free) java framework/library which meets my requirement.

+5  A: 

I'm not sure if you'll need a framework.

Check out the documentation for the java.awt.Robot class, specifically the createScreenCapture method.

http://java.sun.com/javase/6/docs/api/java/awt/Robot.html

tschaible