|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
java.awt.Robot
public class Robot

This class is used to generate native system input events for the purposes of test automation, self-running demos, and other applications where control of the mouse and keyboard is needed. The primary purpose of Robot is to facilitate automated testing of Java platform implementations.
Using the class to generate input events differs from posting
events to the AWT event queue or AWT components in that the
events are generated in the platform's native input
queue. For example, Robot.mouseMove will actually move
the mouse cursor instead of just generating mouse move events.
Note that some platforms require special privileges or extensions
to access low-level input control. If the current platform configuration
does not allow input control, an AWTException will be thrown
when trying to construct Robot objects. For example, X-Window systems
will throw the exception if the XTEST 2.2 standard extension is not supported
(or not enabled) by the X server.
Applications that use Robot for purposes other than self-testing should handle these error conditions gracefully.
| Constructor Summary | |
|---|---|
Robot
Constructs a Robot object in the coordinate system of the primary screen. |
|
Robot
Creates a Robot for the given screen device. |
|
| Method Summary | |
|---|---|
BufferedImage |
createScreenCapture
Creates an image containing pixels read from the screen. |
void |
delay
Sleeps for the specified time. |
int |
getAutoDelay
Returns the number of milliseconds this Robot sleeps after generating an event. |
Color |
getPixelColor
Returns the color of a pixel at the given screen coordinates. |
boolean |
isAutoWaitForIdle
Returns whether this Robot automatically invokes waitForIdle
after generating an event. |
void |
keyPress
Presses a given key. |
void |
keyRelease
Releases a given key. |
void |
mouseMove
Moves mouse pointer to given screen coordinates. |
void |
mousePress
Presses one or more mouse buttons. |
void |
mouseRelease
Releases one or more mouse buttons. |
void |
mouseWheel
Rotates the scroll wheel on wheel-equipped mice. |
void |
setAutoDelay
Sets the number of milliseconds this Robot sleeps after generating an event. |
void |
setAutoWaitForIdle
Sets whether this Robot automatically invokes waitForIdle
after generating an event. |
String |
toString
Returns a string representation of this Robot. |
void |
waitForIdle
Waits until all events currently on the event queue have been processed. |
Methods inherited from class java.lang.Object ![]() |
|---|
clone |
| Constructor Detail |
|---|

public Robot()
throws AWTException

AWTException

- if the platform configuration does not allow
low-level input control. This exception is always thrown when
GraphicsEnvironment.isHeadless() returns true
SecurityException

- if createRobot permission is not grantedGraphicsEnvironment.isHeadless()
,
SecurityManager.checkPermission(java.security.Permission)
,
AWTPermission


public Robot(GraphicsDevice![]()
![]()
screen) throws AWTException
![]()
![]()
If screen devices are reconfigured such that the coordinate system is affected, the behavior of existing Robot objects is undefined.
screen - A screen GraphicsDevice indicating the coordinate
system the Robot will operate in.
AWTException

- if the platform configuration does not allow
low-level input control. This exception is always thrown when
GraphicsEnvironment.isHeadless() returns true.
IllegalArgumentException

- if screen is not a screen
GraphicsDevice.
SecurityException

- if createRobot permission is not grantedGraphicsEnvironment.isHeadless()
,
GraphicsDevice
,
SecurityManager.checkPermission(java.security.Permission)
,
AWTPermission

| Method Detail |
|---|

public void mouseMove(int x,
int y)
x - X positiony - Y position

public void mousePress(int buttons)
mouseRelease method.
buttons - the Button mask; a combination of one or more
of these flags:
InputEvent.BUTTON1_MASK
InputEvent.BUTTON2_MASK
InputEvent.BUTTON3_MASK
IllegalArgumentException

- if the button mask is not a
valid combinationmouseRelease(int)


public void mouseRelease(int buttons)
buttons - the Button mask; a combination of one or more
of these flags:
InputEvent.BUTTON1_MASK
InputEvent.BUTTON2_MASK
InputEvent.BUTTON3_MASK
IllegalArgumentException

- if the button mask is not a valid
combinationmousePress(int)


public void mouseWheel(int wheelAmt)
wheelAmt - number of "notches" to move the mouse wheel
Negative values indicate movement up/away from the user,
positive values indicate movement down/towards the user.

public void keyPress(int keycode)
keyRelease method.
Key codes that have more than one physical key associated with them
(e.g. KeyEvent.VK_SHIFT could mean either the
left or right shift key) will map to the left key.
keycode - Key to press (e.g. KeyEvent.VK_A)
IllegalArgumentException

- if keycode is not
a valid keykeyRelease(int)
,
KeyEvent


public void keyRelease(int keycode)
Key codes that have more than one physical key associated with them
(e.g. KeyEvent.VK_SHIFT could mean either the
left or right shift key) will map to the left key.
keycode - Key to release (e.g. KeyEvent.VK_A)
IllegalArgumentException

- if keycode is not a
valid keykeyPress(int)
,
KeyEvent


public Color![]()
![]()
getPixelColor(int x, int y)
x - X position of pixely - Y position of pixel

public BufferedImage![]()
![]()
createScreenCapture(Rectangle
![]()
![]()
screenRect)
screenRect - Rect to capture in screen coordinates
IllegalArgumentException

- if screenRect width and height are not greater than zero
SecurityException

- if readDisplayPixels permission is not grantedSecurityManager.checkPermission(java.security.Permission)
,
AWTPermission


public boolean isAutoWaitForIdle()
waitForIdle
after generating an event.
waitForIdle is automatically called

public void setAutoWaitForIdle(boolean isOn)
waitForIdle
after generating an event.
isOn - Whether waitForIdle is automatically invoked

public int getAutoDelay()

public void setAutoDelay(int ms)
IllegalArgumentException

- If ms is not between 0 and 60,000 milliseconds inclusive

public void delay(int ms)
InterruptedExceptions that occur,
Thread.sleep() may be used instead.
ms - time to sleep in milliseconds
IllegalArgumentException

- if ms is not between 0 and 60,000 milliseconds inclusiveThread.sleep(long)


public void waitForIdle()
IllegalThreadStateException

- if called on the AWT event dispatching thread

public String![]()
![]()
toString()
toString

in class Object

|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||