I tried to use the file upload using Apache Commons but the following exception thrown
the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is null
html code
Form method="post" action="getData.jsp" enctype="multipart/form-data"    
input type="file" name="upload"
JSP code
 DiskFileUpload upload = new DiskFileUpload();         
 boolean isMultipart=upload.isMultipartContent(request);   
List items = upload.parseRequest(request); //this line throw exception.
Where am i going wrong?
 
    