简体   繁体   English

Java3D Applet源文件

[英]Java3D Applet source files

I have a Java3D application, where the applet is embeded in a html file with syntax " <applet code="iiit.vlabdemos.science.science$MyApplet" width="990" height="700" title="EPR"> ". 我有一个Java3D应用程序,其中将小程序嵌入到HTML文件中,语法为“ <applet code="iiit.vlabdemos.science.science$MyApplet" width="990" height="700" title="EPR"> ” 。 I am actually looking for the source files[ie .class/.jar/.jnlp files] of that applet in the application repository. 我实际上是在应用程序存储库中寻找该applet的源文件(即.class / .jar / .jnlp文件)。 But I am unable to trace it out. 但是我无法找到它。 Is it that the applet is running form some server? 小程序正在从某个服务器运行吗? Can someone explain what the applet syntax means. 有人可以解释一下applet语法的含义。

The attribute "code" contains the name of the applet class but when it doesn't point to a .class file, usually you find a reference to a JNLP file (attribute "jnlp_href") or to a JAR (attribute "archive"). 属性“ code”包含小应用程序类的名称,但是当它不指向.class文件时,通常会找到对JNLP文件(属性“ jnlp_href”)或JAR(属性“ archive”)的引用。 。 No the applet isn't running from a server, it is downloaded and executed within the web browser. 没有Applet不在服务器上运行,而是在Web浏览器中下载并执行的。 Enable the logs and the trace in the Java console to see which JAR or class file is loaded. 在Java控制台中启用日志和跟踪,以查看加载了哪个JAR或类文件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM