The Artima Developer Community
Sponsored Link

Java Answers Forum
applet

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
abdel

Posts: 11
Nickname: caram
Registered: May, 2003

applet Posted: Jun 11, 2003 3:44 AM
Reply to this message Reply
Advertisement
hi,
i hope that anyone would help me!
I want to list all parameter from HTML-page with applet tag to my applet without knowing how much they are.
in servlet is like the following:

Enumeration enum = req.getParameterNames();

Vector vector = new Vector();
while (enum.hasMoreElements())
vector.addElement((String)enum.nextElement());

String[] values = new String[vector.size()];
for (int i = 0; i < values.length(); i++) {
if (vector.hasMoreElements())
values = req.getParameter((String)vector.elementAt(i

and I would like to compare this parameters with system Properties how my appelet is started
in applet i don't know??
please please help me!!
Thanks in advance

Topic: progress bar while loading an applet Previous Topic   Next Topic Topic: Transparent GIF

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use