0
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
    /*<applet code=CodeBase width=300 height=300>
    </applet>*/
    public class CodeBase extends Applet
    {
      String sn,br;
      URL url;

    public void start()
    {
     AppletContext ac=getAppletContext();
     url=getCodeBase();
     try{
            ac.showDocument(new URL(url+"a.html"));
    System.out.println("Hello");
   // ac.showDocument(new URL("D:Java Programs//Applet//a.html"));
        }
        catch(MalformedURLException e)
     {
        showStatus("Url not found");
    }

    }

    }

此代码不显示a.htmlin 小程序的文档。当我们使用AppletContext.showDocument()方法时,它会在指定的 URL 处显示文档,但它不起作用。

4

1 回答 1

0

作为第一个建议,更改:

ac.showDocument(new URL(url+"a.html"));

至:

ac.showDocument(new URL(url,"a.html"));

但更好的是,在之前/之后添加一些健全性检查。就像是:

URL urlPlus = new URL(url+"a.html");
System.out.println(urlPlus);
URL urlComma = new URL(url,"a.html");
System.out.println(urlComma);
// ...

最后一部分就是我所说的“健全性检查调试”。使用带有调试器的 IDE 进行检查更容易,但如果不这样做,请使用“如有疑问,请打印出来! ”的原则。

于 2012-04-12T10:12:14.383 回答