Ver Mensaje Individual
  #11 (permalink)  
Antiguo 23/06/2005, 09:53
ZaurieL
 
Fecha de Ingreso: mayo-2005
Mensajes: 6
Antigüedad: 19 años, 8 meses
Puntos: 0
Cita:
Iniciado por CarlaMedina
¿Cómo lo hago?
Tengo:
String idFo= request.getParameter("idForm"); //lo recupero de un formulario
Intento pasarlo a int así:
int idF=(int)idFo;
Pero da error.
Gracias!
Prueba con:

int idF = Integer.valueOf(idFo).intValue();

Saludos