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>
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>