把这个JAVA文件编译成CLASS文件后

源代码在线查看: example2.java

软件大小: 2 K
上传用户: cy_jing
关键词: 编译
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.applet.*;
				import java.awt.*;
				import java.awt.event.*;
				import java.net.*;
				public class Example2 extends Applet implements ActionListener{
				  Button button;
				  URL url;
				  TextField text;
				  public void init(){
				    text=new TextField("http://",20);
				    button=new Button("ok");
				    add(new Label("Enter the net address:"));add(text);add(button);
				    button.addActionListener(this);
				  }
				  public void actionPerformed(ActionEvent ae){
				    if(ae.getSource()==button){
				      try{
				          url=new URL(text.getText().trim());
				      }
				      catch(MalformedURLException g){
				          text.setText("Awrong address!");
				      }
				      getAppletContext().showDocument(url);
				    }
				  }
				}
				    			

相关资源