Hi, I was wondering how do I send a file through a browser dialog box? After the user selected the file to be submited from an applet, how do I receive the file from the server side? Thanks.
Carl Trusiak
Sheriff
Joined: Jun 13, 2000
Posts: 3340
posted
0
I haven't tried it but have read that you can use a servlet with the following basic code.
request is the HttpServletRequest object in your dopost(), doget() or service() method of your servlet. Give it a try and let me know how it works out. Good Luck