Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #14524

Re: "java_sersion" Applet parameter's Expected behaviour

From Lew <lewbloch@gmail.com>
Newsgroups comp.lang.java.programmer
Subject Re: "java_sersion" Applet parameter's Expected behaviour
Date 2012-05-11 13:32 -0700
Organization http://groups.google.com
Message-ID <28922109.21.1336768324469.JavaMail.geo-discussion-forums@pbqn10> (permalink)
References <cd1a43f4-1042-4fd8-8e9d-32012efa9c6a@k10g2000pbk.googlegroups.com> <ef60eb8f-507e-422e-8ab3-eaa3817ade84@o3g2000pby.googlegroups.com>

Show all headers | View raw


Richard Maher wrote:
> Honestly, here's a very simple applet: -
> 
> <HTML>
> <HEAD>
> <TITLE> A Simple Program </TITLE>
> </HEAD>
> <BODY>
> 
> Here is the output of my program:
> <APPLET CODE="HelloWorld.class" WIDTH=150 HEIGHT=25>
> 
> 
> </APPLET>
> </BODY>
> </HTML>
> 
> import java.awt.Graphics;
> public class HelloWorld extends java.applet.Applet {
> 
>     public void init() {
>             resize(150,25);
>     }
>     public void paint(Graphics g) {
>             g.drawString("Hello world!", 50, 25);
>     }
> }

Have you considered using JNLP?

> Can *anyone* show me *any version* or Java +/- browser wher the
> "java_version" applet parameter does *anything* other than take up
> space? APPLET, OBJECT, or EMBED tags.
> 
> What is supposed to hapen when I ask/demand 7.0 and 7.0 does not
> exists???

How many question marks do you need to indicate an interrogative?

> Is larry [sic] pre-occupied on courtroom battles to concentrate on something
> that should be so simple?

That's a very silly question.

Five minutes of googling found me this:
"For both Internet Explorer and the Mozilla family of browsers, if Java Plug-in is installed (version 1.3.1_01a or later) then the latest installed version of Java Plug-in is invoked to run the applet."
<http://docs.oracle.com/javase/1.5.0/docs/guide/plugin/developer_guide/using_tags.html#applet>

and this (did you read the tutorials for applets?):
<http://docs.oracle.com/javase/tutorial/deployment/applet/param.html>
"Parameters are to Java applets what command-line arguments are to applications. "

Did you write your applet to take a "java_version" parameter? If not, there's your error.

Really, you should consider reading the documentation,at least the tutorials. And increase your google-fu. It only took me five minutes to find this information, and I'm not experienced with applets.

Where did you find an indication of an applet parameter to specify the Java version? Please cite your reference.

-- 
Lew

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

"java_sersion" Applet parameter's Expected behaviour Richard Maher <maherrj@googlemail.com> - 2012-05-09 20:36 -0700
  Re: "java_sersion" Applet parameter's Expected behaviour Richard Maher <maherrj@googlemail.com> - 2012-05-11 07:27 -0700
    Re: "java_sersion" Applet parameter's Expected behaviour Lew <lewbloch@gmail.com> - 2012-05-11 13:32 -0700
      Re: "java_sersion" Applet parameter's Expected behaviour Lew <lewbloch@gmail.com> - 2012-05-15 15:20 -0700

csiph-web