- /*
- Get Applet parameter Example
- This java example shows how get the parameter passed to an applet using
- getParameter() method of Java Applet class.
- */
- import java.applet.Applet;
- import java.awt.Graphics;
- /*
- * To pass a parameter to an Applet use <param> HTML tag.
- * Specify name and value attribute to pass a parameter to an applet like
- * given below.
- *
- * <param name="paramName" value="paramValue"/>
- *
- * You can pass multiple parameters for an Applet using multiple
- * <param> HTML tag.
- */
- /*
- <applet code="GetAppletParameterExample" width=200 height=200>
- <param name="msg" value="This is a parameter example program"/>
- <param name="xPosition" value="50"/>
- <param name="yPosition" value="50"/>
- </applet>
- */
- public class GetAppletParameterExample extends Applet{
- public void paint(Graphics g){
- int x = 0;
- int y = 0;
- String msg = "";
- try{
- x = Integer.parseInt(getParameter("xPosition"));
- }
- catch(NumberFormatException ne){
- msg = msg + "Invalid x Value";
- }
- try{
- y = Integer.parseInt(getParameter("yPosition"));
- }
- catch(NumberFormatException ne){
- msg = msg + "Invalid y Value";
- }
- msg = getParameter("msg");
- g.drawString(msg, x, y);
- }
- }
Welcome to the world of Java examples, organized by categories and Java packages. Java examples (Java sample source code) help to understand functionality of various Java classes and methods as well as various programming techniques in a simple way, which is otherwise very hard to learn by reading tutorials or Java API. So start exploring...
Sunday, November 27, 2011
Get Applet parameter Example
Subscribe to:
Post Comments (Atom)
How to find the most appropriate Keywords?
🔍 Step 1: Understand Your Business and Audience Define your products, services, or content . Identify your target audien...
-
/* Pause Thread Using Sleep Method Example This Java example shows how to pause currently running thread using sleep method of Jav...
-
/* Java String split example. This Java String split example describes how Java String is split into multiple Java String objects. */ ...
-
// File Name GreetingClient.java import java.net.*; import java.io.*; public class GreetingClient { public static void main(String [] ...
No comments:
Post a Comment