📄 ex6_1.java
字号:
/*
* @(#)Ex6_1.java 1.0 09/03/02
*
* You can modify the template of this file in the
* directory ..\JCreator\Templates\Template_2\Project_Name.java
*
* You can also create your own project template by making a new
* folder in the directory ..\JCreator\Template\. Use the other
* templates as examples.
*
*/
import java.awt.*;
import java.applet.*;
public class Ex6_1 extends Applet
{ TextField text1,text2,text3;
public void init()
{text1=new TextField("输入密码",10);
text1.setEditable(false);
text2=new TextField(10);
text2.setEchoChar('*');
text3=new TextField("我是一个文本框",20);
add(text1);add(text2);add(text3);
text3.setText("重新设置了文本");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -