Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/07/2016, 11:44
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Problema con un servlet al cargar archivos al servidor

Buenas,

Cuando haces un multpart/form-data el getParameter devuelve siempre null.

No lo indicas en ninguna parte a pesar de que es un dato fundamental para poder ayudarte, pero creo que utilizas Apache Commons FileUpload para subir el fichero.

En ese caso podrias leer las variables asi:

Código Java:
Ver original
  1. List items = upload.parseRequest(request);
  2.  
  3. for (Object item1 : items) {
  4.    FileItem item = (FileItem) item1;
  5.   if( item.isFormField() )
  6.   {
  7.     String fieldName = item.getFieldName();
  8.     String value = item.getString();
  9.   }
  10. }

Un saludo
__________________
If to err is human, then programmers are the most human of us