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
2 Posted Topics
Re: 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 … | |
Re: 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 :) |
The End.