使用servlet和jsp显示上传的文件

时间:2018-07-22 10:03:08

标签: jsp tomcat servlets

我正在制作一个简单的动态Web应用程序。

在这种情况下,我已经使用servlet中的常用文件上传了本地主机上的服务器tomcat上的文件。

我想将它们作为图标(例如pdf,doc,ppt)显示在jsp页面上,当我们单击图标时会下载它们。

我该怎么做?

这是我要在其中显示它们的jsp页面:

        `<%@ page language="java" 
        contentType="text/html; charset=windows-1256"
        pageEncoding="windows-1256"
        import="loginpkg.UserBean"
         %>
        <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
        "http://www.w3.org/TR/html4/loose.dtd">
         <html>
         <head>
         <meta http-equiv="Content-Type" 
         content="text/html; charset=windows-1256">
         <title>   User Logged Successfully   </title>
         </head>
          <body>
          <center>
          <% 
          UserBean currentUser = new UserBean();
          if (session != null) {
            currentUser = (UserBean) 
           session.getAttribute("currentSessionUser");
          }
                %>
        Welcome <%= currentUser.getFirstName() + " " + 
        currentUser.getLastName() %>
        upload your files here  
                    <form action="FileUpload" method="post" 
                    enctype="multipart/form-data">
                    <input type="file" name="file" >
                    <input type="submit" value="upload">
                     </form>

                   your uploaded files are:-

              **iwant to show the files here as icons,which gets downloaded 
               on clicking them**
               </center>
                 </body>
                </html>`

0 个答案:

没有答案