Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Exporting an Applet with Eclipse  (Read 6166 times)
0 Members and 1 Guest are viewing this topic.
Offline Christopher

Senior Member


Medals: 2
Projects: 1



« Posted 2011-05-11 04:29:07 »

Hi all!

Happily working my way through Java 1.4 Game Programming when i hit a stump. The book describes methods to create a .jar file with command line entry and run it with an HTML file, however I have been following along using Eclipse.

This is the java class.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
package game.programming.tutorial;

import java.awt.*;
import javax.swing.*;
   
public class MyApplet extends JApplet
{

   public void init()
    {
       setSize(400, 300);
    }
 
    public void start()
    {
 
    }
   
    public void paint(Graphics g)
    {
       g.drawString("Text to Screen", 20, 20);
    }
   
    public void stop()
    {
   
    }
   
    public void destroy()
    {
   
    }
}


This is the HTML file.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
<HTML>
   
<HEAD>
    <TITLE>Applet JAR Example</TITLE>
</HEAD>
   
<BODY>
    <CENTER><B>Applet JAR Example</B>
    <BR>
    <APPLET CODE="MyApplet.class" ARCHIVE="MyApplet.jar"      
        WIDTH=400
          HEIGHT=300>
    </APPLET>
    </CENTER>
</BODY>
   
</HTML>


When I export from eclipse I do the following...
-Right click class(context: Export)
-Select JAR file.
Next
-Resources to export (MyApplet.java is the only one ticked)
-Export generated class files and resources ticked
-compress the contents of the JAR file ticked
Next
-Export class errors ticked
-Export class warnings ticked
Next
-Generate the Manifest ticked
-Seal some packages ticked
Finish

At this point I have a folder on my desktop "AppletTest"
This contains,
AppletTest.html
MyApplet.jar

Double clicking the html file loads in my web browser as expected however the applet window just states,
Error: click for details, which show nothing upon clicking.

Any help would be much appreciated,
Thank You.

Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #1 - Posted 2011-05-11 05:00:18 »

Do you see the Java icon in your taskbar? Right click, choose "Open 1.6.0_25 Console" and report back any errors you see.

Aha, I just noticed, your class is in a package. Change the HTML applet tag to:
1  
<applet code="game/programming/tutorial/MyApplet.class" archive="MyApplet.jar" width="400" height="300"></applet>

Offline kieve

Senior Newbie




I am Awesome.


« Reply #2 - Posted 2011-05-11 05:02:27 »

try changing
1  
APPLET CODE="MyApplet.class"


to
1  
APPLET CODE="game/programming/tutorial/MyApplet.class" 


import universe.characteristics.Awesome
class kieve extends Awesome{
    public kieve(){
        beAwesome();
    }
    public void beAwesome(){
        while(true)awesomeness++;
    }
}
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline Christopher

Senior Member


Medals: 2
Projects: 1



« Reply #3 - Posted 2011-05-11 10:11:27 »

It works!

Thank you.

Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #4 - Posted 2011-05-11 21:47:08 »

Glad to help Smiley

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (76 views)
2013-05-17 21:29:12

alaslipknot (89 views)
2013-05-16 21:24:48

gouessej (119 views)
2013-05-16 00:53:38

gouessej (113 views)
2013-05-16 00:17:58

theagentd (125 views)
2013-05-15 15:01:13

theagentd (112 views)
2013-05-15 15:00:54

StreetDoggy (156 views)
2013-05-14 15:56:26

kutucuk (178 views)
2013-05-12 17:10:36

kutucuk (178 views)
2013-05-12 15:36:09

UnluckyDevil (186 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.087 seconds with 21 queries.