How to upload files to server using JSP/Servlet?
如何使用jsp/servlet将文件上载到服务器?我试过这个:
1 2 3 4 5 | <form action="upload" method="post"> <input type="text" name="description" /> <input type="file" name="file" /> <input type="submit" /> </form> |
但是,我只得到文件名,而不是文件内容。当我把