我想将TextField中的数据排序到TextArea, 但我不知道如何完成代码。
我知道这很简单但只是开始使用java。
package abcorder;
import java.applet.Applet;
import java.awt.*;
public class Sort extends Applet
{
Button b1;
TextField t1, t2;
TextArea t3;
String result;
public void init()
{
b1 = new Button("Send");
t1 = new TextField(10);
t2 = new TextField(10);
t3 = new TextArea(8, 25);
this.add(t1);
this.add(t2);
this.add(b1);
this.add(t3);
}
private boolean sort(String s1, String s2)
{
if (s1.compareTo(s2) < 0) {return true;}
else {return false;}
}
public boolean action(Event e, Object o)
{
String s1, s2;
s1 = new String(t1.getText());
s2 = new String(t2.getText());
if (e.target == b1)
{
t3.append(result);
return true;
}
return false;
}
}
我无法理解并且被困住了。 谢谢;)