2016-07-03
展开全部
importjava.awt.*;importjava.applet.*;importjava.awt.event.*;publicclassUseTextEventextendsAppletimplementsActionListener,TextListener{TextFieldt1;TextAreat2;Panelp1;publicvoidinit(){t1=newTextField(25);t2=newTextArea(10,25);t1.addActionListener(this);t1.addTextListener(this);p1=newPanel(newBorderLayout());p1.add(t1,BorderLayout.NORTH);p1.add(t2,BorderLayout.SOUTH);add(p1);}publicvoidtextValueChanged(TextEventt){if(t.getSource()==t1){t1.setText(t1.getText());t1.setCaretPosition(t1.getText().length());//设置输入后的长度t2.setText(t1.getText());}}publicvoidactionPerformed(ActionEvente){if(e.getSource()==t1)t2.setText("");}}这个可以使光标放在文字的后面,但是光标还是会闪动,不稳定。
追问
首先非常感谢的回答,不过样式有点乱哈。我要的是当前光标是可以随意点到哪里的,不是固定位置。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询