reading jsp array in to java(servlet) program

i'm trying to read an array from jsp in to java(servlet) page
the code is
JSP CODE (readingcheck box values):
String select[] = request.getParameterValues("sel"); 

if (select != null && select.length != 0) {

for (int i = 0; i < select.length; i++) {
out.println(select[i]);
its working ok!

JAVA CODE(reading array values):
String select2[] = request.getParameterValues("select"); 
for (int i = 0; i < select2.length; i++)
{
System.out.println(select2[i]);
}
the above java code didnt worked.

i also tried this
String[] select= new String[100];
for (int i = 0; i <10 ; i++)
{
select[i] = request.getParameter(select[i]);
System.out.println(select[i]);
}
this didnt worked too
is there any other way to read array values from jsp page?
where am i wrong?

Smilar Topics

  • how to debug (locating errors in ) java servlet program

    I am new to java and java servlet. I am using Java servlet to setup a website on a Tomcat server.I have no experience on how to debug Java servlets. Especially, how to effectively locate the errors in the code. The error info appearring in my IE explorer is less informative for locating the error in ...

  • Posting to and reading from a Java Servlet

    does anyone know how to POST data using Http to a servlet that is extending an Http server, and also how to read data back from the servlet, ...

  • Where is the translated Java servlet source of a JSP?

    Where can I find the translated Java servlet source code of a JSP? ...

  • Java Servlet Problem :(

    We currently have a working JSP script that can add and average integers, now our professor wants us to make the same script but using a different language, she wants us to program it using "java servlet". Our script is currently posted at http://www.patrickmagpantay.com/wishlist.html . Pl ...

  • How to call the java servlet?

    I have written a simple java servlet ncount1.java, and compile itsuccessfully.Also I have installed Apache and Tomcat successfully on PC (windows 2000professional), and some sample jsp pages run correctly.I put the servlet (ncount1.class) in the tomcat directory ( c:\ProgramFiles\tomcat\webapps\ROOT ...

  • JSP better than servlet?

    I read an article claiming that JSP can do everything that Java servlet can do, with an advantage of separating user interface and program logic. So, is JSP better than servlet, and there is no benefit for using servlet instead of JSP? And how about performance then, both are the same? ...

  • jQuery.get(servlet url) should activate Java servlet?

    I am trying to develop a web program that uses ajax with AppEngine.in HTML <head> part,  I put... <script type="text/javascript">//<![CDATA[   function asyn() {     $.get("http://localhost:8888/ajaxtestforpictures");   } //]]</script>and the java servlet ...

  • Using AJAX in a Java Servlet

    I have used very little AJAX. I see how to use XMLHttpRequest within a JSP page, but I would like to use it within a Java Servlet. How can I do this? ...

  • Oracle interMedia Java Servlet photo album sample application

    O/S Microsoft 2000,oracle 8.1.7PROBLEM IS HAVING CONFIGURRED ALL THE PARAMETERS AS DEFINED IN THE READ ME FILES AND HAVING COMPILED THE CODE TO GENERATE THE CLASS FILES AND PLACED THEM IN THE SAID FOLDERS THE ERROR FOR JSP AND THE SERVLET EXAMPLE IS :java.lang.IllegalMonitorStateException: current t ...

  • how to pass the parameters of jsp from one servlet to another

    i created one jsp form with 2 fields..now in the first servlet i want check whether those 2 fields values are presented in the Database or not..if not then i want move those values to another servlet .. how can i do this?how to get the values (parameter values of jsp in second servlet... here is my ...

  • how to pass the parameters of jsp from one servlet to another

    i created one jsp form with 2 fields..now in the first servlet i want check whether those 2 fields values are presented in the Database or not..if not then i want move those values to another servlet .. how can i do this?how to get the values (parameter values of jsp in second servlet... here is my ...

  • how to pass the parameters of jsp from one servlet to another servlet

    i created one jsp form with 2 fields..now in the first servlet i want check whether those 2 fields values are presented in the Database or not..if not then i want move those values to another servlet .. how can i do this?how to get the values (parameter values of jsp in second servlet.. .ie; in firs ...

  • data file and servlet program

    all , I have a servlet program, this program will get a user name and password from a web page. I need to check the user name and passsword entered by user with a data file has all user names and passwords. the thing is I know how to search and check if the name and password in data file or not . my ...

  • java servlet not compiling

    some days back it was working but i don't why suddenly my java program is not compiling.i have set classpath=".;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib\servlet.jar".c:\> javac -classpath HowdyServlet.javait shows error in import java.servlet;statement and likewise in ...

  • First Servlet Program

    I dont have any basic knowledge in servlet program in java.Now i am using Redhat os.Please any one tell some steps how to execute the servlet program. ...

  • Servlet Program Urgent Help

    I am developing the sample servlet program.This is my sample program.Servlet Code:package org;import java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class HelloWorld extends HttpServlet{public void doGet(HttpServletRequest req,HttpServletResponse rsp)throws ServletException,IOExc ...

  • Oracle Java Servlet + DMZ + Connection Manager + Database

    my company asked me to prepare concept how to deploy small java application into Internet. I have only few information about the application, generally speaking using any oracle technology (iAS, Forms, ADF, etc.) had been dismissed, instead of that the application will run as java servlet on HTTP se ...

  • java servlet not compiling

    i have set classpath=".;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib\servlet.jar".and compiled servlet program on the command line as-c:\>javac HowdyServlet.javathen also it's not workingany guesses!! ...

  • Storing cookies from a java servlet

    I am updating a java servlet to store cookies. I have a subclass that extends HttpServlet. In this class I override the service method which is called everytime an HTTP request is sent to the servlet:public class eqderivatives extends HttpServlet{...public void service( HttpServletRequest req, HttpS ...

  • Ubuntu Java Servlet Programming

    Ok, so im making a java servlet which takes in a name from the user, adds it into an array and then displays the array List. But i cannot find a way to store the array so when the user enters another name that name gets added to the array.I have a basic spec and it explicitly expresses the use of th ...

  • passing multiple values from a JSP to a servlet by a hyperlink

    How can I pass multiple values from a JSP to a servlet using an hyperlink. Following is my code<div style="width:500px;height:20px;border:2px solid blue; padding-top:25px; padding-left:40px; padding-right:20px; padding-bottom:10px;"><jsp:include page = "/Alphabet.jsp"/ ...

  • How do I retrieve Javascript values from a Java servlet? (?Map?)

    HeyI have a program in retrieving data from a HTML page with Javascript using Java. Lets say I have the structure ofC:/index.htmlC:/js/script.jsindex.html contains:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html ...

  • jQuery AJAX Java Servlet encoding problem

    I have a strange problem using jQuery with Java Servlet pages. I want to edit, insert delete some entry for myself in a java project using jQuery and Java Servlet. Everything is written in utf8, but when I call an ajax function in jQuery the posted request gets the value as converted UTF8 chracters ...

  • jQuery Java servlet and Ajax File Upload

    I want to implement a file upload using a jquery form plugin.The examples i've seen show usage with PHP.Has anyone been able to do make a fileupload plugin work with a javaServlet and apache filecommons ? ...

  • jQuery Java Servlet with Jsonp

    Hi,i'm trying to make a jsonp servlet but it gives me an error on theresponse. I'm missing something? maybe on the java servlet?Servelet:HttpServletResponse response;HttpServletRequest request;response.setContentType("application/x-javascript; charset=utf-8");PrintWriter out = resp ...

  • jQuery Java Servlet with Jsonp

    Hi,i'm trying to make a jsonp servlet but it gives me an error on theresponse. I'm missing something? maybe on the java servlet?Servelet:HttpServletResponse response;HttpServletRequest request;response.setContentType("application/x-javascript; charset=utf-8");PrintWriter out = resp ...

  • Talking to a Java Servlet

    I can make 2 Java Servlets talk to one another either through Stream-based APIs or via HTTP Tunneling. I'd like to make PHP talk to a Java Servlet. Any ideas?------------------Justin AlcornDir., Net AppsOhioOnline ...

  • javacsript drop down list from java servlet!!

    Hi, i am currently working on aptana studio nokia wrt to create a widget.for my project, i've used a java servlet to connect to the database (ms sql server 2005) to retrieve data from the database.And in aptana studio, i am using javascript to connect to the servlet.I am able to display and process ...

  • Java servlet & mySQL - Bad handshake.

    I have mysql 3.21.26 installed on HP-UX 11.00 system and mm.mysql-2.0.1 as a JDBC driver. I was trying to connect mysql database through JDBC servlet program. It gives the following error message.Message: Communication link failure: Bad handshakeSQLState: 08S01ErrorCode: 1043Any pointer or help? ...