Advanced   Java   Services
Eine andere website laden
Back Next Up Home

Ich will wieder zurück !



Das Applet ist im genauso aufgebaut.

import java.net.* ;
import java.awt.* ;
import javax.swing.* ;
import java.awt.event.*;

public class ShowDocumentApplet2 extends JApplet
{
   private JButton showURLButton = new JButton("wird gemacht") ;

   public void init()
   {
      showURLButton.setBackground( new Color( 240, 200,200 ) );
      showURLButton.addActionListener( new ButtonHandler() ) ;
      getContentPane().add(showURLButton);
   }

   class ButtonHandler implements ActionListener
   {
      public void actionPerformed(ActionEvent e)
      {
         try
         {
            URL url = new URL( getCodeBase().toString() + "showDoc.html");
            getAppletContext().showDocument(url);
         }
         catch(MalformedURLException ex)
         {
            showURLButton.setText(""+ex);
         }
      }
   }
}  // end class

top Back Next Up Home