since recently I think we are forced to use IcedTea to run applets in Ubuntu 11.10. At least I don't see how to install Sun Java from the Software Center.
I would like to debug an applet which gives problems in IcedTea. However, I don't know how to show the applet console. So no chance to see any Exceptions.
Cheers, Ruth
You can easily see near realtime the output of the IcedTea Java plugin by first running in two separate terminal windows the following commands then invoking the applet in your web browser.
$ watch -n 1 'cat $HOME/.icedteaplugin/java.stdout'
or
$ watch -n 1 'cat $HOME/.icedteaplugin/java.stderr'
java.stdout contains standard output of the running applet whereas java.stderr will capture standard error output (capture exceptions trace here).
Note : the "-n" option flag lets you specify the refresh rate in seconds.