• Struts2实现文件上传(二)


    Struts2实现文件上传


    文件上传页面

    file.jsp:

    <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%@ taglib prefix="s" uri="/struts-tags" %>
    
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        <base href="<%=basePath%>">
        
        <title>文件上传</title>
        
    	<meta http-equiv="pragma" content="no-cache">
    	<meta http-equiv="cache-control" content="no-cache">
    	<meta http-equiv="expires" content="0">    
    	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    	<meta http-equiv="description" content="This is my page">
    	<style type="text/css">
    	    
    	</style>
    	
    
      </head>
      
      <body>
        <table align="center" width="30%" border="0">
    		<tr>
    			<td>
    				<s:fielderror cssStyle="color:red" />
    			</td>
    		</tr>
        </table>
    
    	<s:form action="fileUpload" theme="simple" method="post" enctype="multipart/form-data">
    		<table align="center" width="50%" border="1">
    			<tr>
    				<td style="text-align: right;font-weight: bolder;">
    					<label>用户名:</label>
    				</td>
    				<td>
    					<s:textfield name="username" cssStyle="310px;" maxlength="10" tooltip="请输入用户名"></s:textfield>
    				</td>
    			</tr>
    
    			<tr>
    				<td style="text-align: right;font-weight: bolder;">
    					<label>密  码:</label>
    				</td>
    				<td>
    					<s:password name="password" cssStyle="310px;" maxlength="10" tooltip="请输入密码"></s:password>
    				</td>
    			</tr>
    			<tr>
    				<td style="text-align: right;font-weight: bolder;">
    					<label>文  件:</label>
    				</td>
    				<td id="more">
    					<s:file name="file"></s:file><input type="button" value="添加更多.." οnclick="addMoreFile()">
    				</td>
    			</tr>
    			<tr>
    			    <td></td>
    				<td>
    					<s:submit value="提交" cssStyle="125px;"></s:submit>
    					      
    					<s:reset value="重置" cssStyle="125px;"></s:reset>
    				</td>
    			</tr>
    		</table>
    	</s:form>
      </body>
    </html>
    


  • 相关阅读:
    二维数组输出10行杨辉三角
    二维数组的练习----求和
    数组的异常及处理
    二维数组在内存中的结构
    Ubuntu系统中安装Mercurial 以支持hg
    什么是插补、直线插补、联动与插补
    压力表(负压表...)
    常用接近开关的原理和分类
    VMware Ubuntu安装详细过程
    Redis+Spring缓存实例(windows环境,附实例源码及详解)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315163.html
Copyright © 2020-2023  润新知