1. 编写窗体应用程序,统计一个文本域输入文本的行数、单词数和字符数。可在图形界面中安排一个按钮、一个文本域和一个标签,点击按钮开始统计,在标签中显示结果。 package a.b.c;import java.awt.*;import java.awt.event.*;import java.applet.*;public class ex11_1 extends Frame implements ActionListenerTextArea textInput;Label res;public ex11_1()textInput=new TextArea(5,10);Panel p=new Panel();p.setLayout(new GridLayout(3,1,2,2);Button countButton=new Button(Process the Text);countButton.addActionListener(this);p.add(countButton);