使用c#application

时间:2015-06-10 21:35:00

标签: java c# applet

我试图在使用c#开发的Web应用程序中运行一些applet,当我运行它时,我收到此消息:

ClassNotFoundException .PruebaPulsacion.class

我在这里查了一些问题,但它们对我不起作用,我不知道该怎么做。 在我的aspx页面中,我有这段代码:

<applet codebase="http://etao-inico.usal.es/applets/paqApplet/"code="PruebaPulsacion.class" archive="etao4.jar,xercesImpl.jar,xml-apis.jar" width="100%" height="100%">
    <asp:Literal runat="server" ID="literalParametros"></asp:Literal>
</applet>

我所拥有的结构就是你在这张图上看到的结构:

   /
    -applets
           --paqApplets
                ---PruebaPulsacion.class
                ---etao4.jar
                ---.......class

因此,您可以检查我的代码库,我有类所在的url,并且我已经放置了此文件夹中的所有jar,但没有。我已经关注了这个问题:How to specify correctly codebase and archive in Java applet?!但它不起作用。你能帮帮我吗?,

1 个答案:

答案 0 :(得分:0)

问题出在代码的路径上。最后我删除了代码库,然后编写了下一行:

 <applet code="paqApplet/PruebaPulsacion.class" archive="http://etao-inico.usal.es/etao4.jar,http://etao-inico.usal.es/xercesImpl.jar,http://etao-inico.usal.es/xml-apis.jar" width="100%" height="100%">
    <asp:Literal runat="server" ID="literalParametros"></asp:Literal>
</applet>