Hello guys,
I've made a little thingy in java and jarred it, now to display it on my webpage to what directory should i upload it and what would be the classpath (codebase/archive) ?
this is what i have:
the name is app.jar and the content is only 1 file, Chat.class
its simple class which extends Applet
and draws a circle
altough when i load the webpage it doesn't show anything, nor a java sign or w/e
Any ideas??
Thanks in advance!
I've made a little thingy in java and jarred it, now to display it on my webpage to what directory should i upload it and what would be the classpath (codebase/archive) ?
this is what i have:
Code:
<html>
<head>
<title>My Applet Page</html>
</head>
<body>
<applet code="Chat.class" archive="http://AAA.x10hosting.com/app.jar" width="600px" height="450px">
Java is not installed on your machine or your browser does not allowed Java Applet to run<br /><br />Get the latest Java technology at <a href="http://www.java.com/">http://www.java.com/</a>
</applet>
</body>
</html>
the name is app.jar and the content is only 1 file, Chat.class
its simple class which extends Applet
and draws a circle
altough when i load the webpage it doesn't show anything, nor a java sign or w/e
Any ideas??
Thanks in advance!
Last edited: