rustyx
rustyx

Reputation: 85341

Require a specific minimal Java version for an Applet

My clients have JRE 1.3.x and 1.5.x installed, and when I use the <applet> tag, 1.3.x is often loaded by default by the browser. How can I request the browser to use JRE 1.5.x in this case?

Note: JRE upgrade on customer side is not an option.

Upvotes: 0

Views: 324

Answers (2)

Andrew Thompson
Andrew Thompson

Reputation: 168825

Use deployJava.js to deploy the applet. For the version, specify it as:

var version = '1.5';

Upvotes: 1

KV Prajapati
KV Prajapati

Reputation: 94645

Not sure how it works for other browser. Here is an article to where you can specify a JRE family version for a Java applet to run in Java Plug-in for Internet Explorer.

Reference doc : JavaTM Plug-in and Applet Architecture

Upvotes: 1

Related Questions