Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use ANTLR make a small java applet. I can run it from eclipse without any problem, but once i put it on the web-page. Applet cannot display any stuff. such as button never is displayed until I use mouse over it.

    <applet 
     code="gui.FGG_main" 
     width="790" 
     height="545"
     archive="fgg.jar,antlrworks-1.4.3.jar,output.jar">
    </applet>

Can any people help, and tell me what happened

share|improve this question
"Can any people help?" <DWS>Change column 37, line 142 of the source from a .` to a , and everything will be fine.</DWS> Failing that, post 1) An SSCCE. 2) The console output. 3) The URL where we can see the applet fail. -- Why are you coding an applet rather than a desktop app.? – Andrew Thompson Feb 18 at 22:21

1 Answer

Maybe you need to use deployJava.js. You can find it in this Oracle tutorial. The tutorial describes in detail every step neccessary.

share|improve this answer
I try the jnlp, but have the same problem. – Han Bing Feb 18 at 21:43
Do you use custom images for the buttons? From your explanation its possible that Applet doesn't have the images. This could explain why the Applet works in Eclipse, but not in the web browser (You might image-url might be local or don't refer to the exported resources correctly). Do you use the Java-Console for debugging? This way you might see wether or not your Applet has any errors. You can learn how to activate it here: java.com/en/download/help/javaconsole.xml – fancy Feb 19 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.