Tuesday, April 16, 2013

How to upload file using jsp using FileRenamePolicy

| 13 comments
How to upload file from jsp?Java servlet  API doesn't provide any class to handle file upload.So we have to download external library to upload file Download Jar.File uploading can be done only with doPost and by using enctype "multipart/form-data" .By default it's enctype is"application/x-www-form-urlencoded" Feature of various enctype given below valueDescription application/x www form urlencodedSpace of url converted to "+" symbols...[Readmore]