Hola amigos, tengo un problema y no se como hacer, soy nuevo en este cuento de programación,
necesito hacer un ejercicio con Servlets, EL CODIGO FUNCIONA Y ATRAPA LOS VALORES DE STRING.
PERO LO DEL CALENDARIO ES MI PROBLEMA
Es un formulario jsp con un input text que atrape el nombre,
y con un datepicker que atrape la fecha de nacimiento, pero al momento de enviarlo con el submit
imprima el nombre (normal) y la edad de esa persona.
Realmente no se cómo atrapar el parametro de la fecha, desde el formulario VO, y pues, realmente nunca habia usado eso, y pues tras del hecho no se como hacer para obtener de la fecha ingresada la edad del usuario, se que es un ejercicio para principiantes, pero busco y busco en internet y solo aparecen ejercicios muy malos, lo logico seria restar la fecha de nacimiento a la fecha actual pero no se como hacerlo...
aqui envio mi codigo...
<strong>1) INDEX JSP:</strong>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Primer Servlet</title>
</head>
<body>
<h2>Ingrese los siguientes datos para calcular su edad</h2>
<form action="PruebaServlet" method="post">
<table>
<tr>
<td><label>Nombre:</label></td>
<td><input type="text" name="nombre"></td>
</tr>
<tr>
<td><label>Fecha Nacimiento:</label></td>
<td><input type="date" name="fecha"></td>
</tr>
<tr>
<td><input type="submit"></td>
</tr>
</table>
</form>
</body>
</html>
<strong>2) Formulario VO:</strong>
package co.edu.uniminuto.arqSw.ejercicioServlets.tallerUno.vos;
/**
*
* @author Matthew Jara
*/
public class FormularioPersonaVo {
private String nombre;
public FormularioPersonaVo(String nNombre) {
this.nombre = nNombre;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
}
<strong>3) SERVLET:</strong>
package co.edu.uniminuto.arqSw.ejercicioServlets.tallerUno.servlets;
import co.edu.uniminuto.arqSw.ejercicioServlets.tallerUno.vos.FormularioPersonaVo;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Matthew Jara
*/
@WebServlet(name = "PruebaServlet", urlPatterns = {"/PruebaServlet"})
public class PruebaServlet extends HttpServlet {
/**
* 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 FormularioPersonaVo miForm;
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
try {
/* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet PruebaServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Hola " + this.miForm.getNombre() + ", su edad es años </h1>");
out.println("</body>");
out.println("</html>");
} 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, HttpSe