简体   繁体   中英

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"> ". I am actually looking for the source files[ie .class/.jar/.jnlp files] of that applet in the application repository. 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.

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"). No the applet isn't running from a server, it is downloaded and executed within the web browser. Enable the logs and the trace in the Java console to see which JAR or class file is loaded.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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