Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8198043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:52:03+00:00 2026-06-07T05:52:03+00:00

How to get Data from Mysql to be in Value of text in servlet

  • 0

How to get Data from Mysql to be in Value of text in servlet

I try this code but it is not working

 while(rs.next()){
        out.println("<form action=\"userpage\" method=\"post\">"
                + "    <input type=\"text\" name=\"ID_customer\" value=\"<%=rs.getString(1)%>\">"
                 +  "</form>");
           }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:52:04+00:00Added an answer on June 7, 2026 at 5:52 am

    You should have to create separate view (.jsp) instead of producing dynamic content of html in Servlet.

    First of all create the List<T> to represent database result in servlet or model class and assign that list object into request (request scope) via request.setAttribute() method.

    public class Customer
    {
       private int id;
       .....
       public void setId(int id) { }
       public int getId() { return id;}
    }
    

    In servlet,

    List<Customer> listOfCustomer=new ArrayList<Customer>();
    //code to populate the listOfCustomer from database
    
    request.setAttribute("list",listOfCustomer);
    request.getRequestDispatcher("/show.jsp").forward(request,response);
    

    The view show.jsp should be:

    <c:forEach var="customer" items="${listOfCustomer}">
       <form method='post' action='servlet_url'>
            <input type="text" 
                   name="ID_customer" 
                   value="${customer.id}" />
       </form>
    </c:forEach>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do I get data from MYSQL key/value pairs into a javascript object. I
How get data from mysql database? I use ASP.NET and C#.Previously, I used LINQ
I want to get data from mysql database with the help of DataImportHandler so
I've a php function to get some data from mysql database: function get_persons() {
I want to get data from table in MySQL and to show it in
I'm trying to get a certain data from mysql with fetchAll. I currently have
I want to get data from a table in my MySQL database. $linkID =
I get the following error when inserting data from mysql into postgres. Do I
How can I get ALL the data from a table of my DB (mySQL)
I'm using derived tables (latest version of MySQL) to get counts and data from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.