Continuando con este tema
Cita:
Iniciado por chuidiang Imagino que lo que quieres hacer es subir un fichero al servidor, aquí tienes como [url]http://chuwiki.chuidiang.org/index.php?title=File_upload_con_JSP[/url]
Se bueno.
Despues de impletar dicho codigo me surge el siguiente error si ponlo como ruta de destino
me sale el siguiente error
Código ERROR:
Ver originalHTTP Status 500 -
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
java.io.FileNotFoundException: \images\foto.jpg (El sistema no puede encontrar la ruta especificada)
note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.1.2.2 logs.
GlassFish Server Open Source Edition 3.1.2.2
por otro lado si intento poner una ruta absoluta
Código JAVA:
Ver originalFile fichero
= new File("C:\\PROYECTO\\AplicacionWeb\\web\\images", uploaded.
getName());
me da el siguiente error:
Código ERROR:
Ver originalHTTP Status 500 -
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
java.io.FileNotFoundException: C:\PROYECTO\AplicacionWeb\web\images (Acceso denegado)
note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.1.2.2 logs.
Alguna idea de porque pasa esto? He supuesto que era por el tema de permisos, los he cambiado pero sigue sin funcionarme :(