Java AWT | MouseInfo and PointerInfo

MouseInfo and PointerInfo is a part of Java AWT. MouseInfo provides information about the location of the pointer and the number of buttons on the mouse. PointerInfo provides information returns the information about the location of the pointer and the graphics device.
Methods of MouseInfo
| Method | Explanation |
|---|---|
| getNumberOfButtons() | Returns the number of buttons on the mouse. |
| getPointerInfo() | Returns a PointerInfo object that represents the current location and graphics device of the pointer. |
Methods of PointerInfo
| Method | Explanation |
|---|---|
| getDevice() | Returns the graphics device on which mouse was present when the object was created . |
| getLocation() | Returns a point object that gives the location of the mouse pointer. |
- Example Program to find the number of buttons on the Mouse
// Java Program to find the number of// buttons on the mouseimportjava.awt.*;importjavax.swing.*;classnumberofbuttons {// Main Methodpublicstaticvoidmain(String args[]){intnumberofbuttons;// number of buttons in the mousenumberofbuttons = MouseInfo.getNumberOfButtons();// print the number of buttonsSystem.out.println("Number of buttons on the mouse ="+ numberofbuttons);}}Output:
Number of buttons on the mouse = 5
- Example Program to show the Position of Mouse
// Java Program to show the// position of mouseimportjava.awt.*;importjava.awt.event.*;importjavax.swing.*;classmouseextendsJFrame {booleanb;// labelJLabel l, l1;// Main Methodpublicstaticvoidmain(String args[]){// create objectmouse m =newmouse();}// default constructormouse(){super("mouse");// create labelsl =newJLabel("");l1 =newJLabel("");// create a panelJPanel p =newJPanel();// add labels to panelp.add(l);p.add(l1);add(p);show();setSize(300,300);b =true;execute();}publicvoidexecute(){while(b) {// get the pointer info object from the mouseInfoPointerInfo pi = MouseInfo.getPointerInfo();// get the location of mousePoint p = pi.getLocation();// set the text of labelsl.setText("x position ="+ p.getX());l1.setText("y position ="+ p.getY());}}}Output:
References:




