当前位置:编程学习 > JAVA >>

如何在Java程序中,实现点击在编辑键区中,向下的箭头。

KeyEvent key = null ;
sum = key.VK_DOWN ;
System.out.println(sum);
new Tt(sum);
System.out.println(key.getKeyText(sum));


class Tt{

Tt( int j ){
try {
Robot ro = new Robot();
ro.keyPress(j);
ro.keyRelease(j);

}catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}



这个。按理说应该是方向键向下。可是实际上。他输出的是小键盘区的2.

我求教的是。想在小键盘区中。点击向下的那个键。

家里的系统是win7。JDK版本是1.7.0_25
编写代码的软件是:eclipse java eclipse jdk --------------------编程问答-------------------- 你是想点击向下的那个键实现什么功能?

设置个监听类,在类里面的方法里实现自己想要的方法 --------------------编程问答-------------------- static int  VK_KP_DOWN
Constant for the numeric keypad down arrow key.
static int  VK_KP_LEFT
Constant for the numeric keypad left arrow key.
static int  VK_KP_RIGHT
Constant for the numeric keypad right arrow key.
static int  VK_KP_UP
Constant for the numeric keypad up arrow key.
补充:Java ,  Java相关
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,