62,621
社区成员
发帖
与我相关
我的任务
分享
import javax.swing.JFrame;
import javax.swing.JTextField;
public class Test {
public static void main(String[] args) {
JFrame j=new JFrame();
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JTextField jf=new JTextField(){
public void paste() {
}
};
j.getContentPane().add(jf);
j.pack();
j.setVisible(true);
}
}