Search:

Type: Posts; User: rameshiit19

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    3,654

    Re: Running an Applet With JAR file

    Found the bug.It's in manifest file.

    Specified Class-Path: C:/Sample.jar as . It's working fine now.

    Thanks !
  2. Replies
    4
    Views
    3,654

    Re: Running an Applet With JAR file

    I have modified my HTML code as follows,


    <html>
    <head>
    <title>Sample Applet</title>
    </head>
    <body>
    <applet name="sampleapplet" code="SampleApplet" archive="SampleApplet.jar" height="80"...
  3. Replies
    4
    Views
    3,654

    Running an Applet With JAR file

    Hi,
    I have created an Applet as follows and made it into a jar file (SampleApplet.jar).

    import java.applet.Applet;
    import java.awt.Graphics;
    public class SampleApplet extends Applet
    {
    public...
Results 1 to 3 of 3