当前位置: 技术问答>java相关
〓〓〓〓〓☆鼠标指针的简单问题☆〓〓〓〓〓
来源: 互联网 发布时间:2015-02-18
本文导语: 这是applet中的一段,为何那编译器的预览可以,而用IE浏览就说tk.createCustomCursor有错而无法浏览呢 Toolkit tk=Toolkit.getDefaultToolkit(); Image hang_img=tk.getImage("hand.gif"); Cursor hand=tk.createCustomCursor(hand_img,new Point(0,0),"handcursor...
这是applet中的一段,为何那编译器的预览可以,而用IE浏览就说tk.createCustomCursor有错而无法浏览呢
Toolkit tk=Toolkit.getDefaultToolkit();
Image hang_img=tk.getImage("hand.gif");
Cursor hand=tk.createCustomCursor(hand_img,new Point(0,0),"handcursor");
this.setCursor(hand);
请高手指教!
Toolkit tk=Toolkit.getDefaultToolkit();
Image hang_img=tk.getImage("hand.gif");
Cursor hand=tk.createCustomCursor(hand_img,new Point(0,0),"handcursor");
this.setCursor(hand);
请高手指教!
|
hand.gif在classpath路径下面吗?