基于struts实现文件的上传

本文详细介绍使用Struts框架进行文件上传的过程,包括前端页面设置、JavaScript异步上传配置及后端Action处理逻辑,适用于希望了解Struts文件上传具体实现的技术人员。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

基于struts实现文件的上传

首先是前端的jsp页面

<form>
<input type="file" id="upload" name="upload"/>
<input type="button" value="上传" onclick="up()"/>`
</form>

然后是js

<script src="<%=basePath%>core/scripts/boot.js" type="text/javascript"></script>
		<script src="<%=basePath%>core/scripts/EditForm.js" type="text/javascript"></script>
		<script src="<%=basePath%>core/scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
 <script type="text/javascript">
        
               funtcion up(){
                    $.ajaxFileUpload({
                        url:'xxxxx.action',//用于文件上传的请求地址
                        fileElementId :'upload',//文件上传空间的id属性,通过这个id,相当于非异步中的myFile
                        dataType:'text',
                        success: function(data){
                            alert(data);
                        },
                        error: function(data){
                            alert(上传文件失败);
                        }
                    });
                }
        };             
    </script>        

然后就是action区域的代码了

//初始化全局变量
private static YbwxSysNewsAttachDTO YbwxSysNewsAttachDtO =new YbwxSysNewsAttachDTO();;
//跟表单提交的input type = file 的name 保持一致
    private File upload;
    
    //文件名称 (upload+uploadName)固定格式
    private String uploadName;
    
    //文件类型 upload+"ContentType"固定格式
    private String uploadContentType;
    public File getUpload() {
        return upload;
    }
    public void setUpload(File upload) {
        this.upload = upload;
    }
    
    public String getUploadeName() {
        return uploadName;
    }
    public void setUploadName(String uploadName) {
        this.uploadName = uploadName;
    }
    public String getUloadContentType() {
        return muploadContentType;
    }
    public void setUploadContentType(String uploadContentType) {
        this.uploadContentType = uploadContentType;
    }
    	public String  uploadFile()throws Exception{	   
			//附件上传
				String isattachSaveFilePath = request.getRealPath("/");
					
				if (null != upload) {
						try {
							//String id = UuidUtil.get32UUID();
							
							// 扩展名格式:
							String extName = "";
							String headName = "";							
							if (uploadFileName.lastIndexOf(".") >= 0) {
								extName = uploadFileName.substring(uploadFileName.lastIndexOf("."));
								//获得文件名
								headName = uploadFileName.substring(0,uploadFileName.lastIndexOf("."));
							}
							String name=Tools.RandomFileName()+extName;//文件名
							String dateStr = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
							String filePath = "/"+dateStr.substring(0,4)+"/"+dateStr.substring(5,7)+"/"+dateStr.substring(8,10)+"/";
							String DesPath = isattachSaveFilePath+"/"+"upload/fujian"+filePath;
							this.copyFile(new FileInputStream(upload), DesPath,name).replaceAll("-", "");
							YbwxSysNewsAttachDtO.setFilename(headName+extName);
							YbwxSysNewsAttachDtO.setUrl(filePath+name);
							responseWriteHtml("yes");
						} catch (Exception e) {
							e.printStackTrace();
						}
					}else{
						responseWriteHtml("no");
					}
				return null;

		}
		
		/**
		 * 写文件到当前目录的upload目录中
		 * 
		 * @param in
		 * @param fileName
		 * @throws IOException
		 */
		private String copyFile(InputStream in, String dir, String realName)throws IOException {
			File file = new File(dir, realName);
			if (!file.exists()) {
				if (!file.getParentFile().exists()) {
					file.getParentFile().mkdirs();
				}
				file.createNewFile();
			}
			FileUtils.copyInputStreamToFile(in, file);
			return realName;
		}

		

然后执行保存就行了

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值