I have sun-java6-plugin installed on my 10.10 AMD64, and I tested on the Java website that it works with applets.
However it doesn't work with web start - I have to download the jnlp file and double click to open.
Is there a way to integrate web start to my browsers?
34 Answers
In firefox go,
Edit -> Prefferences -> Applications -> JNLP File
Choose SunJDK Java 6 Web Start I had a problem like this and I resolved it by intalling icedtea-6-plugin or icedtea-7-plugin. It depends on the case.
To integrate web start to my browsers follow the steps.
If you just run the applet code inside html tags it doesn't work. Run them inside script(javascript) tags.
- get the jars and class out of jnlp file and put them into applet code.
- then make that applet runs as java script from your html code.
Google Chrome running on top of Ubuntu 18.04 Bionic:
- Open a terminal window (ctrl+alt+t)
- Type the following command:
sudo apt-get install icedtea-8-plugin
- Instead of double-clicking over the .jnlp file icon, try to run it also from a terminal by executing a command-line equivalent to the following, when you'll replace the URL below by the one that links to your .jnlp file:
javaws
Tips: a) In step 3, you may be notified about the availability of a newer version. I strongly recommend that you try, at first, with the current java version already available at your machine before updating it to any newer ones. b) It's very likely that this same approach will be effective for other Ubuntu versions.