Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: This is my servlet code Plese help me...

  1. #1
    Junior Member
    Join Date
    Nov 2011
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Angry This is my servlet code Plese help me...

    /*
     * To change this template, choose Tools | Templates
     * and open the template in the editor.
     */
     
    package test;
     
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.sql.ResultSet; // its mendatory for this program.
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
     
    /**
     *
     * @author ANU_RAG
     */
    public class DropDown1 extends HttpServlet {
    String a,b;
        /**
         * Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
         * @param request servlet request
         * @param response servlet response
         * @throws ServletException if a servlet-specific error occurs
         * @throws IOException if an I/O error occurs
         */
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            String q="select Roomno from shivalik";
            String q1="select Bedno from shivalik";
            try{
    //        try {
                ResultSet j=test.DBService.selectData(q);
     
     
                  out.print("<b>Room No:</b><select name='rn'>");
                  out.print("<option value='select'>----select Room----</option><br>");
     
                while(j.next())
                  {
                    out.print("<tr><td>"+j.getString(1)+"</td></tr>");
                    a = j.getString(1);
     
                    out.print("<option value="+a+">"+a+"</option>");
     
     
                 }
                  out.print("<br>");
    //              }catch(Exception e){}
            // another try block
                  try{
     
                      ResultSet k=test.DBService.selectData(q1);
                      out.print("<b>Bed No.:</b><select name='month'>");
                      out.print("<option value='select'>----select Bed No.----</option>");
                while(k.next())
                  {
                     out.print("<tr><td>"+k.getString(1)+"</td></tr>");
                    b = k.getString(1);
                    out.print("<option value="+b+">"+b+"</option>");
     
                  }
     
                  }catch(Exception e){}
            // end of try block
                 out.print("<center><a href='AdminMenu'><h3>Home</h3></a></center>");
            }catch(Exception e){}
            finally {
                out.close();
            }
        }
     
        // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
        /**
         * Handles the HTTP <code>GET</code> method.
         * @param request servlet request
         * @param response servlet response
         * @throws ServletException if a servlet-specific error occurs
         * @throws IOException if an I/O error occurs
         */
        @Override
        protected void doGet(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            processRequest(request, response);
        }
     
        /**
         * Handles the HTTP <code>POST</code> method.
         * @param request servlet request
         * @param response servlet response
         * @throws ServletException if a servlet-specific error occurs
         * @throws IOException if an I/O error occurs
         */
        @Override
        protected void doPost(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            processRequest(request, response);
        }
     
        /**
         * Returns a short description of the servlet.
         * @return a String containing servlet description
         */
        @Override
        public String getServletInfo() {
            return "Short description";
        }// </editor-fold>
     
    }


    I got only one drop down box but another dropdown box is not appear on the output.
    my database table has three fields
    roomno , bedno, and status
    Last edited by copeg; November 2nd, 2011 at 03:35 PM.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: This is my servlet code Plese help me...

    For future reference, please use the code tags. I have edited your post and added them for you this time.

    While I don't fully understand what the problem is, I will point you to the following link on how to create html forms using the option tag
    HTML option tag
    There are other pages there worth looking at, as your page doesn't even have html, body, or head tags

Similar Threads

  1. servlet
    By selva in forum Java Servlet
    Replies: 2
    Last Post: August 7th, 2011, 10:59 PM
  2. What are the requirements to develop Servlet Application?
    By yousef atya in forum Java Servlet
    Replies: 2
    Last Post: July 28th, 2011, 06:20 PM
  3. collecting information/moving from servlet to servlet
    By CBird in forum What's Wrong With My Code?
    Replies: 0
    Last Post: March 1st, 2011, 07:04 PM
  4. Servlet Help
    By super-jay in forum What's Wrong With My Code?
    Replies: 0
    Last Post: February 27th, 2011, 02:11 PM
  5. Servlet or Jsp?
    By flangofas in forum JavaServer Pages: JSP & JSTL
    Replies: 3
    Last Post: December 8th, 2010, 11:54 AM