Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1231289

cannot debug applet outside of current working directory

XMLWordPrintable

    • x86
    • windows_nt

      Cannot run appletviewer -debug <File URL> when the file URL is not in the current
      working directory. Fails with NumberFormatException

      Steps to reproduce
      Compile the attached code
      save the attached html file
      CD to some other directory
      run appletviewer -debug <path>/TestApplet.html
      When you get to the first JDB prompt type run
      // note: error message
      ---- Kevin.class ----
      import java.awt.*;

      public class Kevin extends java.applet.Applet
      {

          public void init()
          {
             resize(400, 400);
             showStatus("This is a test");
             add( new Button("Test 1") );
             add( new Button("Test 2") );
          }

          public boolean action(Event evt, Object obj)
          {
             if ( evt.target instanceof Button )
             {
                showStatus( (String) obj );
                return true;
             }
             else
                return super.action(evt, obj);
             
          }
      }

      ---- TestApplet.html ----
      <HTML>
      <BODY>
      <applet code = "Kevin.class" width = 200 height = 200 >
      </applet>
      </BODY>
      </HTML>

            mr Mark Reinhold
            kasmithsunw Kevin Smith (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: