千家信息网

ASP.NET文件上传控件Uploadify的用法

发表于:2024-12-12 作者:千家信息网编辑
千家信息网最后更新 2024年12月12日,本篇内容主要讲解"ASP.NET文件上传控件Uploadify的用法",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"ASP.NET文件上传控件Uploadi
千家信息网最后更新 2024年12月12日ASP.NET文件上传控件Uploadify的用法

本篇内容主要讲解"ASP.NET文件上传控件Uploadify的用法",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"ASP.NET文件上传控件Uploadify的用法"吧!

相关API介绍

uploader : uploadify.swf 文件的相对路径,该swf文件是一个带有文字BROWSE的按钮,点击后淡出打开文件对话框,默认值:uploadify.swf。
script : 后台处理程序的相对路径 。默认值:uploadify.php
checkScript :用来判断上传选择的文件在服务器是否存在的后台处理程序的相对路径
fileDataName :设置一个名字,在服务器处理程序中根据该名字来取上传文件的数据。默认为Filedata
method : 提交方式Post 或Get 默认为Post
scriptAccess :flash脚本文件的访问模式,如果在本地测试设置为always,默认值:sameDomain
folder : 上传文件存放的目录 。
queueID : 文件队列的ID,该ID与存放文件队列的div的ID一致。
queueSizeLimit : 当允许多文件生成时,设置选择文件的个数,默认值:999 。
multi : 设置为true时可以上传多个文件。
auto : 设置为true当选择文件后就直接上传了,为false需要点击上传按钮才上传 。

fileExt : 设置可以选择的文件的类型,格式如:'*.jpg;*.gif,*.png' 。

fileDesc : 这个属性值必须设置fileExt属性后才有效,用来设置选择文件对话框中的提示文本,如设置fileDesc为"请选择图像文件",
sizeLimit : 上传文件的大小限制 。
simUploadLimit : 允许同时上传的个数 默认值:1 。
buttonText : 浏览按钮的文本,默认值:BROWSE 。
buttonImg : 浏览按钮的图片的路径 。
hideButton : 设置为true则隐藏浏览按钮的图片 。
rollover : 值为true和false,设置为true时当鼠标移到浏览按钮上时有反转效果。
width : 设置浏览按钮的宽度 ,默认值:110。
height : 设置浏览按钮的高度 ,默认值:30。
wmode : 设置该项为transparent 可以使浏览按钮的flash背景文件透明,并且flash文件会被置为页面的最高层。 默认值:opaque 。
cancelImg :选择文件到文件队列中后的每一个文件上的关闭按钮图标

结构图

HTML代码

JS代码

后台处理程序(接收流,写入流)

namespace WebTest.ashx{ ///  /// UploadFile 的摘要说明 ///  public class UploadFile : IHttpHandler { public void ProcessRequest(HttpContext context) {  context.Response.ContentType = "text/plain";  context.Response.Write(new UploadImpl().Upload(context, UpLoadType.ProductImage, false)); } public bool IsReusable {  get  {  return false;  } } }}

UploadImpl类代码

namespace EntityFrameworks.Application.Core.FileUpload{ ///  /// 图像上传功能的实现 ///  public class UploadImpl { public UploadImpl(IFileUploadSize fileUploadSize) {  _fileUploadSize = fileUploadSize ?? new TestFileUploadSize(); } public UploadImpl()  : this(null) { } #region Fields & Consts static string FileHostUri = System.Configuration.ConfigurationManager.AppSettings["FileHostUri"]  ?? HttpContext.Current.Request.Url.Scheme + "://" + HttpContext.Current.Request.Url.Authority; Point point = new Point(0, 0); //图像从那个坐标点进行截取 double wRate = 1, hRate = 1, setRate = 1; int newWidth = 0, newHeight = 0; IFileUploadSize _fileUploadSize; #endregion #region 图像缩放 ///  /// 图像的缩放 ///  /// 缩放文件 /// 宽 /// 高 /// 是否等比例缩放 /// 缩放后存放的地址 ///  bool CreateThumbnail(HttpPostedFile file, ImageSize imageSize, bool isEqualScale, string name) {  double width = (double)imageSize.Width;  double height = (double)imageSize.Height; ;  try  {  System.Drawing.Image image = System.Drawing.Image.FromStream(file.InputStream);  if (isEqualScale)  {   if (image.Height > height)   {   hRate = height / image.Height;   }   if (image.Width > width)   {   wRate = width / image.Width;   }   if (wRate != 1 || hRate != 1)   {   if (wRate > hRate)   {    setRate = hRate;   }   else   {    setRate = wRate;   }   }   newWidth = (int)(image.Width * setRate);   newHeight = (int)(image.Height * setRate);   if (height > newHeight)   {   point.Y = Convert.ToInt32(height / 2 - newHeight / 2);   }   if (width > newWidth)   {   point.X = Convert.ToInt32(width / 2 - newWidth / 2);   }  }  Bitmap bit = new Bitmap((int)(width), (int)(height));  Rectangle r = new Rectangle(point.X, point.Y, (int)(image.Width * setRate), (int)(image.Height * setRate));  Graphics g = Graphics.FromImage(bit);  g.Clear(Color.White);  g.DrawImage(image, r);  MemoryStream ms = new MemoryStream();  bit.Save(ms, ImageFormat.Jpeg);  byte[] bytes = ms.ToArray();  string fileName = name + imageSize.ToString();//为缩放图像重新命名  using (FileStream stream = new FileStream(fileName, FileMode.Create, FileAccess.Write))  {   stream.Write(bytes, 0, bytes.Length);  }  bit.Dispose();  ms.Dispose();  image.Dispose();  return true;  }  catch (Exception)  {  return false;  } } ///  /// 图像的等比例缩放,默认文件名不改变,会将原文件覆盖 ///  ///  ///  ///  ///  bool CreateThumbnail(HttpPostedFile file, ImageSize imageSize, string name) {  return CreateThumbnail(file, imageSize, true, name); } #endregion public string Upload(HttpContext context, UpLoadType type, bool isScale) {  ImageSize imageSize = _fileUploadSize.ImageSizeForType[type];  HttpFileCollection files = context.Request.Files;  if (files.Count == 0)  {  throw new ArgumentNullException("please choose file for upload.");  }  string path = "/upload/" + type.ToString();//相对路径  if (!Directory.Exists(path))  Directory.CreateDirectory(path);  // 只取第 1 个文件  var file = files[0];  if (file != null && file.ContentLength > 0)  {  try  {   string filename = context.Request.Form["fileName"].Split('.')[0]   + "_"   + DateTime.Now.ToString("yyyyMMddhhssmm")   + imageSize.ToString();   // 本地文件系统路径   string savePath = Path.Combine(context.Server.MapPath(path), filename);   file.SaveAs(savePath);   if (isScale)   CreateThumbnail(file, imageSize, savePath);   //返回URI路径   string ImageUri = FileHostUri   + path   + "/"   + filename;   return "1|" + ImageUri;  }  catch (Exception ex)  {   return "0|" + ex.Message;  }  }  return null; } }}

效果图:

到此,相信大家对"ASP.NET文件上传控件Uploadify的用法"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

0