java 怎样记录鼠标在桌面的的坐标 请给出代码 谢谢 20
3个回答
展开全部
LS说的是很正确的一种方法。看LZ想要实现什么样的效果了。
我用HOOK实现的。 属于第三方的类库了。
Hook.MOUSE.addListener(new HookEventListener() {
public void acceptHookData(HookData hookData) {
if (hookData != null) {
DealHookMouseData(((MouseHookData) hookData).getPointX(),((MouseHookData) hookData).getPointY());
}
}
});
Hook.MOUSE.install();
大概就是这个意思。
LS的比较简单。
我用HOOK实现的。 属于第三方的类库了。
Hook.MOUSE.addListener(new HookEventListener() {
public void acceptHookData(HookData hookData) {
if (hookData != null) {
DealHookMouseData(((MouseHookData) hookData).getPointX(),((MouseHookData) hookData).getPointY());
}
}
});
Hook.MOUSE.install();
大概就是这个意思。
LS的比较简单。
展开全部
import java.awt.*;
import java.awt.event.*;
public class MyButton extends Button implements MouseListener{
ToolTip tip1;
public MyButton(String text) {
super(text);
addMouseListener(this);
}
public void mouseClicked(MouseEvent e){}
public void mousePressed(MouseEvent e){}
public void mouseReleased(MouseEvent e){}
public void mouseEntered(MouseEvent e){
tip1=new ToolTip((Frame)getParent(), "我是小铁针欢迎你的来到 ");
tip1.setTipBackground(Color.cyan);
tip1.setTipForeground(Color.red);
Rectangle rectangle=this.getBounds();
int x=this.getLocationOnScreen().x+e.getX();
int y=this.getLocationOnScreen().y+e.getY();
tip1.setLocation(x,y);
//tip1.setLocation(e.getX(),e.getY());
tip1.show();
}
public void mouseExited(MouseEvent e){
tip1.hide();
}
}
源代码中的 int x=this.getLocationOnScreen().x+e.getX();
int y=this.getLocationOnScreen().y+e.getY();
import java.awt.event.*;
public class MyButton extends Button implements MouseListener{
ToolTip tip1;
public MyButton(String text) {
super(text);
addMouseListener(this);
}
public void mouseClicked(MouseEvent e){}
public void mousePressed(MouseEvent e){}
public void mouseReleased(MouseEvent e){}
public void mouseEntered(MouseEvent e){
tip1=new ToolTip((Frame)getParent(), "我是小铁针欢迎你的来到 ");
tip1.setTipBackground(Color.cyan);
tip1.setTipForeground(Color.red);
Rectangle rectangle=this.getBounds();
int x=this.getLocationOnScreen().x+e.getX();
int y=this.getLocationOnScreen().y+e.getY();
tip1.setLocation(x,y);
//tip1.setLocation(e.getX(),e.getY());
tip1.show();
}
public void mouseExited(MouseEvent e){
tip1.hide();
}
}
源代码中的 int x=this.getLocationOnScreen().x+e.getX();
int y=this.getLocationOnScreen().y+e.getY();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Point mousepoint = MouseInfo.getPointerInfo().getLocation();
System.out.println(mousepoint.x+"\t"+mousepoint.y);
System.out.println(mousepoint.x+"\t"+mousepoint.y);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询