esta es mi pagina HTML
Código HTML:
Ver original <title>Procesamiento de get con parametros
</title>
<form action = "/cpej5/bienvenida2" method = "get"> escriba su nombre y presione el botón Enviar
<input type = "text" name = "nombrepila"/> <input type = "submit" value = "Enviar"/>
aca esta el código del servlet
Código Java:
Ver originalimport javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class ServletDeBienvenida2 extends HttpServlet
{
protected void doGet(HttpServletRequest peticion, HttpServletResponse respuesta)
{
String nombrePila
= peticion.
getParameter("nombrepila");
respuesta.setContentType("html/text");
salida.println("<html>");
salida.println("<head>");
salida.println("<title>Peticion get con datos</title>");
salida.println("</head>");
salida.println("<body>");
salida.println("<h1>Hola " + nombrePila + "<br>");
salida.println("Bienvenido a los Servlets </h1>");
salida.println("</body>");
salida.println("</html>");
salida.close();
}
}
y si necesitas el web.xml me avisas