i am implementing mail application with attachments using html and java servlets
Here's the html code
<input type="file" name="attachment" size="20" multiple>
in the servlets,
String attachments[]= request.getParameterValues("attachment");
is returning null what other way can i use to implement this