Applet won't run on all platforms

I've written a simple applet that compiles cleanly (apparently), and
will run on Solaris and Red Hat 9 using appletviewer; and it will run
on a friend's WinXP Pro system. But when I try to run it on my WIn XP
Pro system, I get these messages in the appletviewer window:
error:null
then
Start: applet not initialized
and in the DOS box I call appletviewer from, I get a string of
messages :
at Panel.<init>(Panel.java:10)
I'm using J2SE 1.4.1 on my XP system.
Thanks for any help!
Harry

OK, here's the code:
//CardDemo.java
//  action handling with multiple events
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class CardDemo extends Applet implements ActionListener{
  //Control panel components
  Panel pnlControls = new Panel();
  Button btnFirst = new Button("|<<");
  Button btnPrev = new Button("<==");
  Button btnC = new Button("C");
  Button btnNext = new Button("==>");
  Button btnLast = new Button(">>|");
  //The Cards
  Panel pnlCards = new Panel();
  CardLayout Stack = new CardLayout();
  Label lblA = new Label("A");
  Label lblB = new Label("B");
  Label lblC = new Label("C");
  Label lblD = new Label("D");
  Label lblE = new Label("E");
  public void init(){
    //set up the main page
    this.setLayout(new BorderLayout());
    this.add(pnlControls, BorderLayout.SOUTH);
    this.add(pnlCards, BorderLayout.CENTER);
    // set up the control panel
    pnlControls.setFont(new Font("SanSerif",Font.BOLD, 20));
    pnlControls.setLayout(new FlowLayout());
    pnlControls.add(btnFirst);
    pnlControls.add(btnPrev);
    pnlControls.add(btnC);
    pnlControls.add(btnNext);
    pnlControls.add(btnLast);
     // register the ActionListener
    btnFirst.addActionListener(this);
    btnPrev.addActionListener(this);
    btnC.addActionListener(this);
    btnNext.addActionListener(this);
    btnLast.addActionListener(this);
    //set up the card panel
    pnlCards.setLayout(Stack);
    pnlCards.setFont(new Font("SanSerif",Font.BOLD, 60));
    pnlCards.add(lblA,"A");
    pnlCards.add(lblB,"B");
    pnlCards.add(lblC,"C");
    pnlCards.add(lblD,"D");
    pnlCards.add(lblE,"E");
    //center the labels
    lblA.setAlignment(Label.CENTER);
    lblB.setAlignment(Label.CENTER);
    lblC.setAlignment(Label.CENTER);
    lblD.setAlignment(Label.CENTER);
    lblE.setAlignment(Label.CENTER);
   } // end init
    public void actionPerformed(ActionEvent e){
         //get the name of the button that was pressed
         String theCommand = e.getActionCommand();
         //check to see which button was pressed
         if (theCommand.equals("|<<")){
        Stack.first(pnlCards);
      else if (theCommand.equals("<==")){
        Stack.previous(pnlCards);
      else if (theCommand.equals("C")){
        Stack.show(pnlCards,"C");
      else if (theCommand.equals("==>")){
        Stack.next(pnlCards);
      else if (theCommand.equals(">>|")){
        Stack.last(pnlCards);
      }  // end if
   } // end ActionPerformed
} // end class def

Similar Messages

  • Class Not Found Exception - applet won't run anywhere outside of IDE

    I have an applet that runs perfectly in the netbeans IDE, but won't run from command prompt (I'm using windows) or from a browser. I've been banging my head against the wall for a few days on this one. Here's the HTML I'm using:
    <applet width="400" height="525" code="musicapplet.class" archive="crypticgraffiti.jar">
    <param name="bgcolor" value="ffffff"> <param name="fontcolor" value="000000">
    </param> </param> Your browser is not Java enabled. </applet>
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    When I attempt to run from command prompt, I get:
    "Error: Could not find or load main class crypticgraffiti.MusicApplet"
    When I attempt to load via html:
    "basic: load: class musicapplet.class not found.
    load: class musicapplet.class not found.
    java.lang.ClassNotFoundException: musicapplet.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: musicapplet.class
    security: Accessing keys and certificate in Mozilla user profile: null"
    I have tried every possible variation for the 'code' element of the applet tag (package.mainclass.class, mainclass, mainclass.class, etc). I have also tried compiling with JDK 1.6 and this didn't change anything. I've tried clearing out the cache of temporary files using the java control panel settings, and have verified that my browser can run other applets using JRE 6 and 7.
    I've tried some different ways of distributing the applet, also: putting all the class files in the folder with the html file, putting the classes in a source folder in the same folder as the html file, and finally putting a jar in the same folder as the html file (which really seems the simplest).
    Any help at all would be most appreciated! This applet is a very cool and original music creating app that draws heavily on the JFugue API. It's a shame that I can't get it online for people to play with!

    Cryptic Graffiti wrote:
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    Please note that class names are case sensitive so "MusicApplet" is not same as "Musicapplet" or "musicapplet". Your applet tag should have fully qualified class name (without quotes) and should look like this:
    <applet width=400 height=525 code=musicapplet.MusicApplet archive="crypticgraffiti.jar">
    </applet>
    The JAR should be in the same directory as your HTML file. While launching from command line, you can also check if your JAR file is getting included in classpath.
    Thanks,
    Nitin

  • ITunes won't run at all after updating 10.5

    I have recently updated iTunes to 10.5, and now it won't run/open at all. Gives me an error and doesn't even open it at all. I have tried everything apple says to do but nothing has worked so far. Please help me, I really want my iTunes running again! If you need more information/details, please ask. I'd be happy to help you if you're going to help me. :-)

    Anyone? Please?

  • JFileChooser applet doesn't work on all platforms

    We have a signed Java applet which works perfectly on Windows XP and Linux but malfunctions on Windows 7 and MacOS 10.5.
    The part which does not work is opening up a JFileChooser (which opens up fine) which then permits the user to browse local files only but not folders on network drives. When the user double-clicks on a network folder or clicks the Open button, nothing happens. The folder is not opened and there are no exceptions reported in the console.
    Obviously it presents as some kind of security violation/exception but, as I said, there are no exceptions in the console and it works fine on some OSes but not others. I have examined the permissions on a folder that does open and one that doesn't (i.e. a network folder) and they certainly are different but I can't spot any obvious problems. All machines have the exact same version of Java (i.e. 1.6.0_20) and it doesn't appear to a 32-bit vs. 64-bit issue as there is a mix of architectures that are working and not working.
    Can anyone suggest how I might go about debugging this or perhaps suggest a resolution? Given that the code that is being executed at the time is Swing code and not application code I am at a bit of a loss as to how to solve this problem.
    The Logical Animal

    It could be the JFileChooser code is being altered or displayed on a thread other than the EDT. OTOH that more typically manifests as a random bug on instances of the application on all platforms/JREs.

  • Java applets won't run on Safari???

    I have reinstalled Java twice, and it still won't run any Java applets. It just sits there with the cup logo and the arrow on either side. It works fine on Firefox but not Safari. Help?

    Hello
    I'm piggy backing on this thread because I too have had problems with Java and Safari
    Java runs fine for me in Firefox, however.
    I went to a federal website
    https://blrscr3.egs-seg.gc.ca/gol-ged/gov/browserdetection/BrowserCheck.html
    that uses java and received this message
    " Java applet unable to load
    To use this service, you must either install a recent version of the Sun JVM or enable "Scripting of Java applets" if it has been disabled."
    so i looked for an update and have downloaded and installed release 6, (at least, it said that it was installed, but have never been able to figure out where)
    when I check Java preferences, the choices are J2SE 1.4.2 or J2SE 5, and when I've switched to 1.4.2 I still have no luck.
    When i run firefox, i get the java console opening, but it doesn't open with safari, and I can't find the option for this to turn on in safari
    i have restarted both safari and my computer and no luck. I have repaired permissions and no changes have taken place.
    Any more suggestions?
    (thank you, by the way)

  • Flash Player 10.0.32.18 won't run at all

    I've downloaded & uninstalled Flash Player 10.0.32.18 several times now to no avail!  I used to be able to view videos online but now there's nothing happening and I'm getting very frustrated with whatever's causing Flash to not work properly.  I've tried to install earlier versions and then upgrade... and nothing but the same.  The older versions won't work either!!
    I have Windows XP Professional ver 5.1 (sp 3) on my system; Pentium 4 3.2G with 1 G of ram which is on a networked system.  The odd thing... other computers on the system have no problem viewing flash videos.  I have recently reset my security and advanced settings to default; have changed ActiveX to several different settings based on what I've read on variuos posts & still nothing.
    ANY help that would solve this frustrating problem ...greatly appreciated!!
    Thanks

    dont have a solution but do have simlar issues
    version 10,0,32,18 fails to play MP4 video 10,0,22,87 does
    Does not work to play MP4 on websites
    example www.30atelevision.com
    version 10,0,32,18 installed -- this in on my computer
    It appears in fact that the file TIMELINE plays, but does not deliver video or audio.
    Works
    version 10,0,22,87 installed -- This will play MP4 as does Flash player 9.
    having Air installed appears to worsen situation
    Yet again ADOBE releases a product that is not backward compatible.
    Post solutions to help address this issue as well as issues running at all
    It seems that going back to previous versions does not work, maybe there is a footprint left that is causing olderversions to be negated
    this is classic adobe, its been happening for years. Want you to update then when you do it breaks whats been working for a long time
    What giant leaps are made with these updates, none, all we want to do it play video and live stream
    Stop breaking stuff adobe

  • I updated to the latest iTunes, and now iTunes won't run at all

    I downloaded the newest update, and now iTunes won't open at all.  I've tried uninstalling and reinstalling, and emptying my "temp" folder, but to no avail.  Any ideas?

    Well, I fiddled around with things more, and now it's running.  I think what made it work was by going to All Programs, where I saw Apple Software Update.  I ran that, and it seemed to do the trick.  I hope this helps other people with the same problem.

  • DVD-R won't run on all players

    I created a slide show with elements 11 and burned a dvd.  The dvd worked fine on our DVD player but not on a few others that we tried.  Is there a solution that would allow the DVD to run on all machines?
    Message was edited by: yakh2o

    Since you can't make a video DVD in PSE, the question is how you finalized the disc? Did you use Premiere Elements? If so, you would probably do better to ask in the PRE forum, which is where the video boffins hang out:
    http://forums.adobe.com/community/premiere_elements

  • HT4216 Diagnostics for iTunes for Windows when iTunes won't run at all?

    I would like to run iTunes diagnostics but am unable to get iTunes to run at all.  Install and repair both report that iTunes is installed correctly.  Are there any diagnostics available where iTunes will not run at all?  Complete uninstall of all Apple products with registry wipe didn't help.

    EULA! EULA! EULA!   Greetings! I had the same problem on my PC for over a year!  Itunes would download, appear to install correctly.. and then I'd get error messages about files not being found.. uninstall and start over to have the same thing happen again and again...  I finally decided that I would track down the problem and I did!!  Its very simple....
    After install, a window pops up saying Itunes installed correctly. Theres a checkbox to RUN IT NOW that is checked by default.. THIS IS THE PROBLEM  It tries to force itunes to run before you accept the EULA.. Uncheck the RUN NOW box and click done or ok.. and immediately, the EULA pops up.. Accept it and then run itunes from the desktop shortcut and it should work perfectly!

  • Signed applets won't run @ web, only locally

    Hey, all elitist java folk, here is one for you:
    I have succeded in creating a signed, and an un-signed java applet - both run well locally. The signed applet, writes to a local file.
    Both are merely proof of concept.
    So, here is the deal:
    I upload both to a webserver (one of those where you get 50Mb for free) via ftp (not ASCII, binary transfer), and only the unsigned will run in my browsers (Opera, FF, MSIE tested).
    The signed one writes to the screen: "Could not instantiate."
    I belive the problem lies in the HTML, which is very basic but still works locally. I don't have any clsid-thingy, is this nessecary? Where do I read about this?
    HTML that (should) load the signed applet:
    <html>
    <applet code="localfile.class" archive="localfile.jar"  width="300" height="300">
    </applet>
    </body>
    </html>As previously said, the unsigned applet work both from the web and locally, so I won't post any more html here...
    Btw, I am not interessed in editing any policy-file; my signed applet should work "out-of-the-box" for any java-enabled browser on the Internet.
    All I want is for the browser to load the signed java applet, ask user for certificate confirmation, and run it... Just like with http://jupload.sourceforge.net/applet-basic.html , which also access local filesystem.

    If you open the Java Console what does it say?
    There shouldn't be any difference in loading the applet locally or from the webserver... presuming the HTML and jar files and classnames and stuff are all correct relative to both locations.

  • Firefox won't run: XULRunner - Error: Platform version 5.0 is not compatible with miniVersion = 5.0.1 maxVersion =5.0.1

    Got this error. Tried to download and reinstall latest version. Said that it installed/upgraded ok. Tried to run again and got same crash.

    The updater wasn't able to update all the files and some were left as older versions.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Java applet won't run: ClassFormatError: Unknown constant tag 115

    Hi,
    About two years ago I uploaded an applet to a server and it ran fine. Since then I've done minor tweaks to the applet and it works on my computer, but I recently uploaded it to a new server and now it gives me the following:
    java.lang.ClassFormatError: Unknown constant tag 115 in class file chemlet
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassFormatError: Unknown constant tag 115 in class file chemlet
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I've already checked that I uploaded everything in binary and that my .class files are intact on the server. In fact I uploaded my files and downloaded them back onto my computer and they run fine. Also I have another applet running smoothly on the same server (which also used to reside on the old server) and it's not having any problems. I have 9 .class files in total and all of them are uploaded. chemlet is the file where execution should start. Any ideas for what to do?
    Thanks in advance.

    Either there is some version problem in applet. or the classfile might have some constant which is not getting referenced properly.
    might be in your chemlet file . use decompiler to open your class file and then check the line number 115 in your chemlet file to see what is the problem there.

  • Applet won't run in Internet Explorer

    I am having problems running applets that I create. They don't run in Internet Explorer. Other applets will run in the browser but it seems to use the Microsoft VM, not the JVM from Sun. The Mozilla Firefox browser will run all applets using the JVM from Sun.

    to api00
    If you cannot see an entry in IE Tools menu named Sun Java Console and open it , then do the following.
    1.Open Windows' Control Panel and look for an entry "Java Plug-in".
    - If it's not there, go here http://java.com/en/index.jsp and click the "Get It Now" button to install the Java Plug-in.
    - If it's there, click it, and then the Browser tab. Make sure that "Internet Explorer" is checked, then close all instances of IE. Go to this page and try one of the applets: http://java.sun.com/j2se/1.4.2/docs/relnotes/demos.html
    2. If that doesn't resolve the problem, remove ALL Sun Java stuff that you can find - check directories and the Registry - and do a clean install of Java.
    to twinkietwin
    Question 1: It appears that you typed the error text in your message #8, because there are capitalization and spelling problems that do not exactly match the errors that Java produces. Is this the case? If so please cut and paste the verbatim text of the errors from the window that appears when you click on the "More Details" button of the "Error - Java General Exception" box. (The EXACT and TOTAL error test is important.)
    It appears that the applet is attempting to acquire the value of some variables from the HTML code that calls the applet, but for some reason it cannot find the HTML file named "example1.htm" that contains the variables. One possibility is that there is a file on your computer named either example1.htm or example1.html that is being found first. Check your machine for files with one of these names; if found, temporarily rename it to something else and try the Sun BarChart applet from the demo page again.

  • Applet won't run on the IIS Server/...

    I have a very simple applet which connects to my Personal Oracle 8...
    When the applet starts on the web browser, it gives me this message...
    Any ideas???
    Any help would be great...
    Java(TM) Plug-in: Version 1.2.2.px
    Using JRE version 1.2.2
    User home directory = C:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    JAR cache enabled.
    Opening http://tuc_wkst/test/package1/Applet1.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\8XY3K12Z\Applet1[1].class
    Opening http://tuc_wkst/test/oracle/dacf/control/swing/TextFieldControl.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\0PMRQ5MN\TextFieldControl[1].class
    Opening http://tuc_wkst/test/oracle/dacf/control/Control.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\GHINCHMR\Control[1].class
    Opening http://tuc_wkst/test/javax/infobus/DataItemChangeListener.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\4LQBSTU3\DataItemChangeListener[1].class
    Opening http://tuc_wkst/test/javax/infobus/ImmediateAccess.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\85UZK96V\ImmediateAccess[1].class
    Opening http://tuc_wkst/test/oracle/dacf/control/ControlEnabledListener.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\OLMNATCD\ControlEnabledListener[1].class
    Opening http://tuc_wkst/test/oracle/dacf/dataset/AppModuleInfo.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\4LQBSTU3\AppModuleInfo[1].class
    Opening http://tuc_wkst/test/oracle/dacf/dataset/ModuleInfo.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\O10Z6DYZ\ModuleInfo[1].class
    Opening http://tuc_wkst/test/oracle/dacf/dataset/ResultSetInfo.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\85UZK96V\ResultSetInfo[1].class
    Opening http://tuc_wkst/test/oracle/dacf/dataset/InfoObject.class no proxy
    CacheHandler file name: C:\WINNT\Profiles\Administrator\Temporary Internet Files\Content.IE5\4LQBSTU3\InfoObject[1].class
    Opening http://tuc_wkst/test/oracle/dacf/dataset/DacObject.class no proxy
    java.lang.NoClassDefFoundError: oracle/dacf/dataset/DacObject
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    null

    for more info: I deinstalled all plug-in versions and then ran the applet. I prompted to download plugin-1.2. Clicked ok. The plug-in downloaded and installed. But after that when I run the applet, the applet viewer(browser) loaded for a sec. then disapears.
    Any help please. Thanks.

  • Swing Applet won't run

    Hi,
    I am unable to run swing applets on my pc. When I view swing applets on this site in the tutorial section the applets run fine, but when I download them and try to run them locally I get a java.lang.ClassNotFoundException. All the files are compiled and in the correct directories.
    Any ideas?
    Thanks

    OK, I get your point, let me rephrase my question:
    I'm trying to run a java application,
    which does not have any syntactical errors since it compiles and runs on my development computer without any errors or warnings.
    The application is built in NetBeans IDE 5.0 (on a winXP) and uses components from the javax.swing package.
    On my other computer (winXP) I get ClassNotFoundExceptions on the swing classes.
    So I assume, I either don't have the swing classes on that computer,
    or I have them, but the java engine can't find them anyway.
    And now my new question:
    Is the javax.swing package not include in the "Java Runtime Environment Version 5.0 Update 8"?
    If it is not, where do I find them and how do I install them?
    It seems strange to have to install a development kit just to be able to run a java application.

Maybe you are looking for

  • How to use CALL FUNCTION '/1BCDWB/SF00000014' in smartform urgent

    hiiiiiiiii Iam doing classical report n i want my output to be printed in smartform. So my output is in IT_FINAL table.In smartform in Form Interface Table column i had declare ::: Parameter Name: IT_FINAL Type Assignment:LIKE Associated Type:ZSD_FIN

  • Orarrp it works with OAS 40821

    Orarrp it works with OAS 40821??? I configured the MIME types in oas 40821 and I installed orarrp in the client. When I run direct printing by Web, the process tries to unload filename.rrpa to the disk instead of printing to local printer.

  • XML within a XML message

    Is it possible to send a message that contains an XML as "text" and it was read it using a Function Module? Is there a length restriction for defining a Data Type for field that will hold the XML? Edited by: Ruben Hopkins on Jun 3, 2008 3:10 PM

  • Content Aware Turned Off CS5

    I changed my setting for when I select an area and "DELETE" so that now the box that used to come up with an option for content aware, white, delete, etc no longer comes up.  Now when I hit "DELETE" it simply wipes out the area that was selected.  I

  • I need help that my ipad mini can't be activated

    Good time, tell me what to do? Friends bought and the U.S. and gave me iPad mini s/n F4*******19D. It is brand new! But when you activate constantly writing - Your Internet phone can not be activated .... In the service center refused to help me by a