MouseInfo
provides methods for getting information about the mouse, such as mouse pointer location and the number of mouse buttons.
package org.kodejava.awt;
import java.awt.*;
public class MouseNumberOfButtons {
public static void main(String[] args) {
// Get the number of buttons on the mouse. On systems without a
// mouse, returns -1. HeadlessException if
// GraphicsEnvironment.isHeadless() returns true.
int numberOfButtons = MouseInfo.getNumberOfButtons();
System.out.println("Mouse Number Of Buttons = " + numberOfButtons);
}
}
The output of the code snippet above:
Mouse Number Of Buttons = 5
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024