- java.lang.Object
-
- java.awt.Robot
-
public class Robot extends Object
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.
- Since:
- 1.3
-
-
Constructor Summary
Constructors Constructor and Description Robot()
Constructs a Robot object in the coordinate system of the primary screen.Robot(GraphicsDevice screen)
Creates a Robot for the given screen device.
-
Method Summary
Methods Modifier and Type Method and Description BufferedImage
createScreenCapture(Rectangle screenRect)
Creates an image containing pixels read from the screen.void
delay(int ms)
Sleeps for the specified time.int
getAutoDelay()
Returns the number of milliseconds this Robot sleeps after generating an event.Color
getPixelColor(int x, int y)
Returns the color of a pixel at the given screen coordinates.boolean
isAutoWaitForIdle()
Returns whether this Robot automatically invokeswaitForIdle
after generating an event.void
keyPress(int keycode)
Presses a given key.void
keyRelease(int keycode)
Releases a given key.void
mouseMove(int x, int y)
Moves mouse pointer to given screen coordinates.void
mousePress(int buttons)
Presses one or more mouse buttons.void
mouseRelease(int buttons)
Releases one or more mouse buttons.void
mouseWheel(int wheelAmt)
Rotates the scroll wheel on wheel-equipped mice.void
setAutoDelay(int ms)
Sets the number of milliseconds this Robot sleeps after generating an event.void
setAutoWaitForIdle(boolean isOn)
Sets whether this Robot automatically invokeswaitForIdle
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.
-
-
-
Constructor Detail
-
Robot
public Robot() throws AWTException
Constructs a Robot object in the coordinate system of the primary screen.- Throws:
AWTException
- if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns trueSecurityException
- ifcreateRobot
permission is not granted- See Also:
GraphicsEnvironment.isHeadless()
,SecurityManager.checkPermission(java.security.Permission)
,AWTPermission
-
Robot
public Robot(GraphicsDevice screen) throws AWTException
Creates a Robot for the given screen device. Coordinates passed to Robot method calls like mouseMove and createScreenCapture will be interpreted as being in the same coordinate system as the specified screen. Note that depending on the platform configuration, multiple screens may either:- share the same coordinate system to form a combined virtual screen
- use different coordinate systems to act as independent screens
If screen devices are reconfigured such that the coordinate system is affected, the behavior of existing Robot objects is undefined.
- Parameters:
screen
- A screen GraphicsDevice indicating the coordinate system the Robot will operate in.- Throws:
AWTException
- if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns true.IllegalArgumentException
- ifscreen
is not a screen GraphicsDevice.SecurityException
- ifcreateRobot
permission is not granted- See Also:
GraphicsEnvironment.isHeadless()
,GraphicsDevice
,SecurityManager.checkPermission(java.security.Permission)
,AWTPermission
-
-
Method Detail
-
mouseMove
public void mouseMove(int x, int y)
Moves mouse pointer to given screen coordinates.- Parameters:
x
- X positiony
- Y position
-
mousePress
public void mousePress(int buttons)
Presses one or more mouse buttons. The mouse buttons should be released using themouseRelease(int)
method.- Parameters:
buttons
- the Button mask; a combination of one or more mouse button masks.It is allowed to use only a combination of valid values as a
buttons
parameter. A valid combination consists ofInputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
and values returned by theInputEvent.getMaskForButton(button)
method. The valid combination also depends on aToolkit.areExtraMouseButtonsEnabled()
value as follows:- If support for extended mouse buttons is
disabled
by Java then it is allowed to use only the following standard button masks:InputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
. - If support for extended mouse buttons is
enabled
by Java then it is allowed to use the standard button masks and masks for existing extended mouse buttons, if the mouse has more then three buttons. In that way, it is allowed to use the button masks corresponding to the buttons in the range from 1 toMouseInfo.getNumberOfButtons()
.
It is recommended to use theInputEvent.getMaskForButton(button)
method to obtain the mask for any mouse button by its number.
The following standard button masks are also accepted:
InputEvent.BUTTON1_MASK
InputEvent.BUTTON2_MASK
InputEvent.BUTTON3_MASK
InputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
instead. Either extended_DOWN_MASK
or old_MASK
values should be used, but both those models should not be mixed.- If support for extended mouse buttons is
- Throws:
IllegalArgumentException
- if thebuttons
mask contains the mask for extra mouse button and support for extended mouse buttons isdisabled
by JavaIllegalArgumentException
- if thebuttons
mask contains the mask for extra mouse button that does not exist on the mouse and support for extended mouse buttons isenabled
by Java- See Also:
mouseRelease(int)
,InputEvent.getMaskForButton(int)
,Toolkit.areExtraMouseButtonsEnabled()
,MouseInfo.getNumberOfButtons()
,MouseEvent
-
mouseRelease
public void mouseRelease(int buttons)
Releases one or more mouse buttons.- Parameters:
buttons
- the Button mask; a combination of one or more mouse button masks.It is allowed to use only a combination of valid values as a
buttons
parameter. A valid combination consists ofInputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
and values returned by theInputEvent.getMaskForButton(button)
method. The valid combination also depends on aToolkit.areExtraMouseButtonsEnabled()
value as follows:- If the support for extended mouse buttons is
disabled
by Java then it is allowed to use only the following standard button masks:InputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
. - If the support for extended mouse buttons is
enabled
by Java then it is allowed to use the standard button masks and masks for existing extended mouse buttons, if the mouse has more then three buttons. In that way, it is allowed to use the button masks corresponding to the buttons in the range from 1 toMouseInfo.getNumberOfButtons()
.
It is recommended to use theInputEvent.getMaskForButton(button)
method to obtain the mask for any mouse button by its number.
The following standard button masks are also accepted:
InputEvent.BUTTON1_MASK
InputEvent.BUTTON2_MASK
InputEvent.BUTTON3_MASK
InputEvent.BUTTON1_DOWN_MASK
,InputEvent.BUTTON2_DOWN_MASK
,InputEvent.BUTTON3_DOWN_MASK
instead. Either extended_DOWN_MASK
or old_MASK
values should be used, but both those models should not be mixed.- If the support for extended mouse buttons is
- Throws:
IllegalArgumentException
- if thebuttons
mask contains the mask for extra mouse button and support for extended mouse buttons isdisabled
by JavaIllegalArgumentException
- if thebuttons
mask contains the mask for extra mouse button that does not exist on the mouse and support for extended mouse buttons isenabled
by Java- See Also:
mousePress(int)
,InputEvent.getMaskForButton(int)
,Toolkit.areExtraMouseButtonsEnabled()
,MouseInfo.getNumberOfButtons()
,MouseEvent
-
mouseWheel
public void mouseWheel(int wheelAmt)
Rotates the scroll wheel on wheel-equipped mice.- Parameters:
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.- Since:
- 1.4
-
keyPress
public void keyPress(int keycode)
Presses a given key. The key should be released using thekeyRelease
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.- Parameters:
keycode
- Key to press (e.g.KeyEvent.VK_A
)- Throws:
IllegalArgumentException
- ifkeycode
is not a valid key- See Also:
keyRelease(int)
,KeyEvent
-
keyRelease
public void keyRelease(int keycode)
Releases a given key.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.- Parameters:
keycode
- Key to release (e.g.KeyEvent.VK_A
)- Throws:
IllegalArgumentException
- ifkeycode
is not a valid key- See Also:
keyPress(int)
,KeyEvent
-
getPixelColor
public Color getPixelColor(int x, int y)
Returns the color of a pixel at the given screen coordinates.- Parameters:
x
- X position of pixely
- Y position of pixel- Returns:
- Color of the pixel
-
createScreenCapture
public BufferedImage createScreenCapture(Rectangle screenRect)
Creates an image containing pixels read from the screen. This image does not include the mouse cursor.- Parameters:
screenRect
- Rect to capture in screen coordinates- Returns:
- The captured image
- Throws:
IllegalArgumentException
- ifscreenRect
width and height are not greater than zeroSecurityException
- ifreadDisplayPixels
permission is not granted- See Also:
SecurityManager.checkPermission(java.security.Permission)
,AWTPermission
-
isAutoWaitForIdle
public boolean isAutoWaitForIdle()
Returns whether this Robot automatically invokeswaitForIdle
after generating an event.- Returns:
- Whether
waitForIdle
is automatically called
-
setAutoWaitForIdle
public void setAutoWaitForIdle(boolean isOn)
Sets whether this Robot automatically invokeswaitForIdle
after generating an event.- Parameters:
isOn
- WhetherwaitForIdle
is automatically invoked
-
getAutoDelay
public int getAutoDelay()
Returns the number of milliseconds this Robot sleeps after generating an event.
-
setAutoDelay
public void setAutoDelay(int ms)
Sets the number of milliseconds this Robot sleeps after generating an event.- Throws:
IllegalArgumentException
- Ifms
is not between 0 and 60,000 milliseconds inclusive
-
delay
public void delay(int ms)
Sleeps for the specified time. To catch anyInterruptedException
s that occur,Thread.sleep()
may be used instead.- Parameters:
ms
- time to sleep in milliseconds- Throws:
IllegalArgumentException
- ifms
is not between 0 and 60,000 milliseconds inclusive- See Also:
Thread.sleep(long)
-
waitForIdle
public void waitForIdle()
Waits until all events currently on the event queue have been processed.- Throws:
IllegalThreadStateException
- if called on the AWT event dispatching thread
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/Robot.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.