Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~6K People Reached
Favorite Forums
Favorite Tags
java x 2

2 Posted Topics

Member Avatar for himanjim

Capturing a screenshot may be achieved in 2 ways - 1. using "robot.createScreenCapture()", as mentioned above. 2. using "robot.keyPress()" to simulate hitting PrtScr key (for most systems). method 2 may be something like this: r.keyPress(KeyEvent.VK_PRINTSCREEN); robot.keyRelease(KeyEvent.VK_PRINTSCREEN); you might want to combine these methods, testing the success of one, and trying …

Member Avatar for Ashan_1
0
2K
Member Avatar for leiger

Thanks so much for this info! I've been struggling with the same issue, didn't even notice the inputStream possibilities... you made my day :)

Member Avatar for karlmeier
0
4K

The End.