Probleme mit Applets

Status
Nicht offen für weitere Antworten.
M

miris2

Gast
Hallo.

Ich habe ein Problem mit Java NetBeans IDE 3.6. Ich möchte ein Applet erzeugen das im Internert Explorer funktioniert. Mein Applet tut nur im Java Viewer und im Browser nicht.

Das ist der Java Code:


Code:
/* Now you will be able to perform actions when a button is clicked 
to get and place text in/out a textfield and to get the state of checkboxes. 
This example will only let the button do actions. 
*/ 
import java.awt.*; 
import java.applet.*; 
// import an extra class for the ActionListener 
import java.awt.event.*; 

// Tells the applet you will be using the ActionListener methods. 

public class ActionExample extends Applet implements ActionListener 
{ 

     Button okButton; 
     Button wrongButton; 
     TextField nameField; 
     CheckboxGroup radioGroup; 
     Checkbox radio1; 
     Checkbox radio2; 
     Checkbox radio3; 

     public void init()  
     { 
  // Now we will use the FlowLayout 
          setLayout(new FlowLayout()); 
          okButton = new Button("Action!"); 
          wrongButton = new Button("Don't click!"); 
          nameField = new TextField("Type here Something",35); 
          radioGroup = new CheckboxGroup(); 
          radio1 = new Checkbox("Red", radioGroup,false); 
          radio2 = new Checkbox("Blue", radioGroup,true); 
          radio3 = new Checkbox("Green", radioGroup,false); 
          add(okButton); 
          add(wrongButton); 
          add(nameField); 
          add(radio1); 
          add(radio2); 
          add(radio3); 

  // Attach actions to the components 
          okButton.addActionListener(this); 
          wrongButton.addActionListener(this); 
         } 

 // Here we will show the results of our actions 
         public void paint(Graphics g) 
         { 
  // If the radio1 box is selected then radio1.getState() will 
  // return true and this will execute 
          if (radio1.getState()) g.setColor(Color.red); 
  // If it was not red we'll try if it is blue 
        else if (radio2.getState()) g.setColor(Color.blue); 
  // Since always one radiobutton must be selected it must be green 
          else g.setColor(Color.green); 

  // Now that the color is set you can get the text out the TextField 
  // like this 
          g.drawString(nameField.getText(),20,100); 
     } 

 // When the button is clicked this method will get automatically called 
 // This is where you specify all actions. 

        public void actionPerformed(ActionEvent evt)  
         { 
  // Here we will ask what component called this method 
              if (evt.getSource() == okButton)  
   // So it was the okButton, then let's perform his actions 
   // Let the applet perform Paint again. 
   // That will cause the aplet to get the text out of the textField 
   // again and show it. 
                   repaint(); 

  // Actions of the wrongButton 
          else if (evt.getSource() == wrongButton)  
          { 

   // Change the text on the button for fun 
               wrongButton.setLabel("Not here!"); 
   // Changes the text in the TextField 
               nameField.setText("That was the wrong button!"); 
   // Lets the applet show that message. 
               repaint(); 
          } 
     }  

} 
  

// That gives you an idea of how to implement actions. 
// Note that clicking the radiobuttons only shows it's effect when the 
// applet is repainted. That is because no ActionListener is added 
// to the radio buttons. You can do that in the same way as the buttons. 

// Next example is about MouseListener, a way to let the user interact with mouse-clicks. 

// Go to MouseClickExample.java

Das der HTML Code:

Code:
<HTML>
<HEAD>
   <TITLE>Applet HTML Page</TITLE>
</HEAD>
<BODY>

<H3><HR WIDTH="100%">Applet HTML Page<HR WIDTH="100%"></H3>




<APPLET code="ActionExample.class" width=350 height=200></APPLET>
</P>

<HR WIDTH="100%"><FONT SIZE=-1>[I]Generated by NetBeans IDE[/I]</FONT>
</BODY>
</HTML>


Das ist die Fehlermeldeungen die in der Java-Konsole erscheinen:

  • java.lang.IllegalArgumentException

    at sun.net.www.ParseUtil.decode(Unknown Source)

    at sun.net.www.protocol.file.Handler.openConnection(Unknown Source)

    at java.net.URL.openConnection(Unknown Source)

    at sun.applet.AppletPanel.getAccessControlContext(Unknown Source)

    at sun.applet.AppletPanel.getClassLoader(Unknown Source)

    at sun.applet.AppletPanel.createAppletThread(Unknown Source)

    at sun.applet.AppletPanel.init(Unknown Source)

    at sun.plugin.AppletViewer.appletInit(Unknown Source)

    at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)

    at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)

Weiss jemand was die Fehlerquelle sein kann? Danke im Vorraus!
 

abollm

Top Contributor
Ich würde einmal versuchen, das Applet mit einem anderen Browser zu starten.

Die Meldung:
Code:
at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)

deutet darauf hin, dass dem Plugin irgendetwas fehlt.
 

abollm

Top Contributor
Sindbad1983 hat gesagt.:
Hi!

Kannst du mir sagen, wie man den Source-Code so einfügen kann? ..in diese Tags? Wie funktioniert das?
danke

Gehört hier eigentlich nicht hin, aber sei's drum:

Oberhalb des Nachrichtenfensters befinden sich so genannte Tags, die du per Button anwählen kannst, z.B. für eingefügten Code den Button mit der Aufschrift "Code". Anschließend deinen Code einfügen und den Link mit der Aufschrift "Tags schließen" drücken.

Das ist es eigentlich schon. Du musst nur mitunter aufpassen, wenn du mehrere Tags verwenden willst.
 
G

Guest

Gast
abollm hat gesagt.:
Ich würde einmal versuchen, das Applet mit einem anderen Browser zu starten.

Die Meldung:
Code:
at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)

deutet darauf hin, dass dem Plugin irgendetwas fehlt.


Ich habe dasselbe noch mit einem Jbuilder X Enterprise Edition (kostenlos zum download erhältlich) nachgebildet und es hat funtioniert allerdings nur wenn ich die html und class Dateien im Verzeichnis C:\Dokumente und Einstellungen\<user>\jbproject\HelloW abspeichere. Ändere ich den Pfad z.B D:\\... kann ich dass Applet nicht mehr im Browser sehen!! Ist das eine Einschränkung vom JBuilder oder mache ich einen Fehler?
 
Status
Nicht offen für weitere Antworten.
Ähnliche Java Themen
  Titel Forum Antworten Datum
U Probleme beim Reloaden des Applets im Browser Tools - Maven, Gradle, Ant & mehr 9
G Probleme mit Texteingabe in Applets Tools - Maven, Gradle, Ant & mehr 2
A Probleme beim Anzeigen des Applets Tools - Maven, Gradle, Ant & mehr 5
F Maven JAR Plugin Probleme Tools - Maven, Gradle, Ant & mehr 4
T Maven: Probleme beim Einbinden der Dependencies Tools - Maven, Gradle, Ant & mehr 9
E Maven Probleme beim Arquillian Deployen Tools - Maven, Gradle, Ant & mehr 0
D [ERLEDIGT] Probleme mit Authorization in Nexus und mvn deploy plugin Tools - Maven, Gradle, Ant & mehr 1
schalentier Probleme mit Jenkins Tools - Maven, Gradle, Ant & mehr 7
G Probleme Jenkins mit Maven einzurichten Tools - Maven, Gradle, Ant & mehr 4
P Maven Download-Probleme beim Build Tools - Maven, Gradle, Ant & mehr 5
C Probleme mit Applet mit SQL im Browser Tools - Maven, Gradle, Ant & mehr 4
S Probleme mit Kombination Java JApplet;MySQL;Webserver Tools - Maven, Gradle, Ant & mehr 3
G Java-Applet Probleme beim Browser Tools - Maven, Gradle, Ant & mehr 14
T Launch4j: eventuell Klassenpfad Probleme Tools - Maven, Gradle, Ant & mehr 4
H WebStart-Probleme mit JRE Version 1.6.0_18 Tools - Maven, Gradle, Ant & mehr 1
E Probleme mit Buckminster unter eclipse 3.4 Tools - Maven, Gradle, Ant & mehr 11
ARadauer Probleme mittels scp bei ant Tools - Maven, Gradle, Ant & mehr 1
F Probleme mit Java WebStart; Hauptklasse konnte nicht gef. Tools - Maven, Gradle, Ant & mehr 18
M Probleme mit JApplet Tools - Maven, Gradle, Ant & mehr 20
M Mein erstes Applet macht Probleme Tools - Maven, Gradle, Ant & mehr 4
M probleme mit signieren Tools - Maven, Gradle, Ant & mehr 6
C 3 "kleine" Probleme zu meinem Applet Tools - Maven, Gradle, Ant & mehr 11
A Probleme bei übergabe von Variabeln im Applet Tools - Maven, Gradle, Ant & mehr 9
U Probleme mit paint(Graphics g) Tools - Maven, Gradle, Ant & mehr 9
M WebStart 1.6 Probleme Tools - Maven, Gradle, Ant & mehr 8
R Probleme bei Applet mit dem IE7? Tools - Maven, Gradle, Ant & mehr 2
P MEDIA-Tracker macht Probleme? Tools - Maven, Gradle, Ant & mehr 6
0 Webstart-Probleme unter Java6 Tools - Maven, Gradle, Ant & mehr 2
R Slash-Probleme durch File Tools - Maven, Gradle, Ant & mehr 2
E Probleme mit Java WebStart Tools - Maven, Gradle, Ant & mehr 10
H Probleme mit setFont() Tools - Maven, Gradle, Ant & mehr 1
H Probleme beim Applet signieren Tools - Maven, Gradle, Ant & mehr 10
S Probleme mit ActionListener bzw. actionPerformed Tools - Maven, Gradle, Ant & mehr 2
P Probleme mit IE und sp2 - Applet wird nicht angezeigt Tools - Maven, Gradle, Ant & mehr 11
F Probleme mit Jar bzw jar-Archiven Tools - Maven, Gradle, Ant & mehr 3
S Probleme mit einem Applet Tools - Maven, Gradle, Ant & mehr 2
P Probleme mit Applet Tools - Maven, Gradle, Ant & mehr 6
O Applet Selbstsignierte Applets in Java 7 Update 51 Tools - Maven, Gradle, Ant & mehr 19
M Was muss man installiert haben damit Java Applets im Browser gehen Tools - Maven, Gradle, Ant & mehr 2
S Signierte Applets über html-Link aufrufen Tools - Maven, Gradle, Ant & mehr 6
newcron Applet Keine warnung beim starten von Applets, die auf die HD zugreifen? Tools - Maven, Gradle, Ant & mehr 2
A Applet ClassNotFound Exception bei Applets Tools - Maven, Gradle, Ant & mehr 3
R Temporärer speicherort für Applets Tools - Maven, Gradle, Ant & mehr 33
I In Java Applets drucken Tools - Maven, Gradle, Ant & mehr 2
S Ladebalken beim laden des Applets Tools - Maven, Gradle, Ant & mehr 9
J Online Shop mit Hilfe eines Applets Tools - Maven, Gradle, Ant & mehr 17
G Problem beim deployen eines Applets Tools - Maven, Gradle, Ant & mehr 8
zilti Applets und Web 2.0 Tools - Maven, Gradle, Ant & mehr 6
J applets öffnen im browser funzt nicht Tools - Maven, Gradle, Ant & mehr 2
N Problem mit Applets in HTML Seite integrieren Tools - Maven, Gradle, Ant & mehr 3
X Applets für Datenbankzugriff signieren Tools - Maven, Gradle, Ant & mehr 8
K Eclipse Applets und ich bekomm langsam nen Hass Tools - Maven, Gradle, Ant & mehr 23
J Panik: Sind Applets wirklich auf 64MB RAM beschränkt ? Tools - Maven, Gradle, Ant & mehr 3
L Applets und Elemente Tools - Maven, Gradle, Ant & mehr 2
V Position des Applets am Screen Tools - Maven, Gradle, Ant & mehr 6
T Signierte Applets auf anderen Rechnern? Tools - Maven, Gradle, Ant & mehr 2
W Anzeigen von Applets Tools - Maven, Gradle, Ant & mehr 8
B 2 Applets/Klassen zu eins verschmelzen Tools - Maven, Gradle, Ant & mehr 3
G Applets und Policy Tools - Maven, Gradle, Ant & mehr 6
P Java Applets und Power Point Tools - Maven, Gradle, Ant & mehr 11
B Starten eines Applets außerhalb der INIT()-Klasse Tools - Maven, Gradle, Ant & mehr 5
T Applets - Sinn oder Unsinn? Tools - Maven, Gradle, Ant & mehr 23
B Permissions Problem mit zwei Applets Tools - Maven, Gradle, Ant & mehr 2
M Rotierendes Ladesymbol in Applets Tools - Maven, Gradle, Ant & mehr 2
V getLocation bei applets Tools - Maven, Gradle, Ant & mehr 2
P Hintergrundfarbe des Applets Tools - Maven, Gradle, Ant & mehr 5
S Versch. Menüs in Applets Tools - Maven, Gradle, Ant & mehr 6
karambara Ladebildschirm / Splash-Screen von Applets ersetzen Tools - Maven, Gradle, Ant & mehr 6
G java applets laufen nicht mehr nach degragmentierung Tools - Maven, Gradle, Ant & mehr 3
TheJavaKid wichtige sicherheits frage zu applets Tools - Maven, Gradle, Ant & mehr 12
I Applets und imports Tools - Maven, Gradle, Ant & mehr 3
J Größenänderung eines Panels innerhalb eines Applets Tools - Maven, Gradle, Ant & mehr 4
P KeyListener in Applets Tools - Maven, Gradle, Ant & mehr 3
R Darstellung des Applets im Browser nicht möglich Tools - Maven, Gradle, Ant & mehr 3
H Pfadangabe bei Applets Tools - Maven, Gradle, Ant & mehr 9
M Applets werden nicht ausgeführt Tools - Maven, Gradle, Ant & mehr 3
G mehrere Applets auf einer Seite Tools - Maven, Gradle, Ant & mehr 7
A mehrere Applets starten Tools - Maven, Gradle, Ant & mehr 4
G Unterschied zw. Java Applets, JSPs, Servlets Tools - Maven, Gradle, Ant & mehr 3
M Fokus des Applets erhalten Tools - Maven, Gradle, Ant & mehr 3
Z Platformunabhänghigkeit von Java (Applets) Tools - Maven, Gradle, Ant & mehr 5
J Bilder in Applets Tools - Maven, Gradle, Ant & mehr 2
M clients über Java-applets auf Com-Port von server Tools - Maven, Gradle, Ant & mehr 5
P Hilfe - Seltsame Fehlermeldung nach Signatur eines Applets! Tools - Maven, Gradle, Ant & mehr 12
K Applets mit dem GEL-Editor Tools - Maven, Gradle, Ant & mehr 4
R Grundlegendes: JFrame innerhalb eines Applets Tools - Maven, Gradle, Ant & mehr 4
S Groesse des Speichers bei Applets Tools - Maven, Gradle, Ant & mehr 3
J Fehler bein Ausführen von Applets in JBuilder Tools - Maven, Gradle, Ant & mehr 6
H Sicherheitsabfrage eines signierten Applets auslesen Tools - Maven, Gradle, Ant & mehr 6
M Kann man den Ladebildschirm eines Applets ändern? Tools - Maven, Gradle, Ant & mehr 2
T 2 Applets zwingend Nebeneinander Tools - Maven, Gradle, Ant & mehr 2
L Nutzung von static Klassen in Applets Problematisch? Tools - Maven, Gradle, Ant & mehr 4
S relativer pfad eines .jar-applets Tools - Maven, Gradle, Ant & mehr 3
N Keine inneren Klassen in Applets? Tools - Maven, Gradle, Ant & mehr 7
F zu große Applets Tools - Maven, Gradle, Ant & mehr 13
T Separaten Thread für GUI bei Applets? Tools - Maven, Gradle, Ant & mehr 5
O Applets und Access Tools - Maven, Gradle, Ant & mehr 2
A Applets in jar-archiv Tools - Maven, Gradle, Ant & mehr 2
G Fehler beim Laden des Applets Tools - Maven, Gradle, Ant & mehr 7
G Applets signieren Tools - Maven, Gradle, Ant & mehr 2

Ähnliche Java Themen

Neue Themen


Oben