首页 > 开发 > 综合 > 正文

通过Web Services上传和下载文件

2024-07-21 02:21:25
字体:
来源:转载
供稿:网友

随着internet技术的发展和跨平台需求的日益增加,web services的应用越来越广,我们不但需要通过web services传递字符串信息,而且需要传递二进制文件信息。下面,我们就分别介绍如何通过web services从服务器下载文件到客户端和从客户端通过web services上载文件到服务器。

一:通过web services显示和下载文件

我们这里建立的web services的名称为getbinaryfile,提供两个公共方法:分别是getimage()和getimagetype(),前者返回二进制文件字节数组,后者返回文件类型,其中,getimage()方法有一个参数,用来在客户端选择要显示或下载的文件名字。这里我们所显示和下载的文件可以不在虚拟目录下,采用这个方法的好处是:可以根据权限对文件进行显示和下载控制,从下面的方法我们可以看出,实际的文件位置并没有在虚拟目录下,因此可以更好地对文件进行权限控制,这在对安全性有比较高的情况下特别有用。这个功能在以前的asp程序中可以用stream对象实现。为了方便读者进行测试,这里列出了全部的源代码,并在源代码里进行介绍和注释。

首先,建立getbinaryfile.asmx文件:

我们可以在vs.net里新建一个c#的aspxwebcs工程,然后“添加新项”,选择“web服务”,并设定文件名为:getbinaryfile.asmx,在“查看代码”中输入以下代码,即:getbinaryfile.asmx.cs:

 using system;
 using system.collections;
 using system.componentmodel;
 using system.data;
 using system.diagnostics;
 using system.web;
 using system.web.ui;
 using system.web.services;
 using system.io;

 namespace xml.sz.luohuedu.net.aspxwebcs
 {
  /// <summary>
  /// getbinaryfile 的摘要说明。
  /// web services名称:getbinaryfile
  /// 功能:返回服务器上的一个文件对象的二进制字节数组。
  /// </summary>
 [webservice(namespace="http://xml.sz.luohuedu.net/",
  description="在web services里利用.net框架进行传递二进制文件。")]
  public class getbinaryfile : system.web.services.webservice
  {

   #region component designer generated code
   //web 服务设计器所必需的
   private icontainer components = null;

   /// <summary>
   /// 清理所有正在使用的资源。
   /// </summary>
   protected override void dispose( bool disposing )
   {
    if(disposing && components != null)
    {
     components.dispose();
    }
    base.dispose(disposing);
   }

   #endregion

    public class images: system.web.services.webservice
   {
    /// <summary>
    /// web 服务提供的方法,返回给定文件的字节数组。
    /// </summary>
    [webmethod(description="web 服务提供的方法,返回给定文件的字节数组")]
    public byte[] getimage(string requestfilename)
    {
     ///得到服务器端的一个图片
     ///如果你自己测试,注意修改下面的实际物理路径
     if(requestfilename == null || requestfilename == "")
      return getbinaryfile("d://picture.jpg");
     else
      return getbinaryfile("d://" + requestfilename);
    }

    /// <summary>
    /// getbinaryfile:返回所给文件路径的字节数组。
    /// </summary>
    /// <param name="filename"></param>
    /// <returns></returns>
    public byte[] getbinaryfile(string filename)
    {
     if(file.exists(filename))
     {
      try
      {
       ///打开现有文件以进行读取。
       filestream s = file.openread(filename);
       return convertstreamtobytebuffer(s);
      }
      catch(exception e)
      {
       return new byte[0];
      }
     }
     else
  &nbsp;  {
      return new byte[0];
     }
    }
  /// <summary>
  /// convertstreamtobytebuffer:把给定的文件流转换为二进制字节数组。
  /// </summary>
  /// <param name="thestream"></param>
  /// <returns></returns>
    public byte[] convertstreamtobytebuffer(system.io.stream thestream)
    {
     int b1;
     system.io.memorystream tempstream = new system.io.memorystream();
     while((b1=thestream.readbyte())!=-1)
     {
      tempstream.writebyte(((byte)b1));
     }
     return tempstream.toarray();
    }
     [webmethod(description="web 服务提供的方法,返回给定文件类型。")]
     public string getimagetype()
     {
      ///这里只是测试,您可以根据实际的文件类型进行动态输出
      return "image/jpg";
     }
   }
 }
 }

一旦我们创建了上面的asmx文件,进行编译后,我们就可以编写客户端的代码来进行调用这个web services了。

我们先“添加web引用”,输入:http://localhost/aspxwebcs/getbinaryfile.asmx。下面,我们编写显示文件的中间文件:getbinaryfileshow.aspx,这里,我们只需要在后代码里编写代码即可,getbinaryfileshow.aspx.cs文件内容如下:

 using system;
 using system.collections;
 using system.componentmodel;
 using system.data;
 using system.drawing;
 using system.web;
 using system.web.sessionstate;
 using system.web.ui;
 using system.web.ui.webcontrols;
 using system.web.ui.htmlcontrols;
 using system.web.services;

 namespace aspxwebcs
 {
  /// <summary>
  /// getbinaryfileshow 的摘要说明。
  /// </summary>
  public class getbinaryfileshow : system.web.ui.page
  {

   private void page_load(object sender, system.eventargs e)
   {
   // 在此处放置用户代码以初始化页面
     ///定义并初始化文件对象;
     xml.sz.luohuedu.net.aspxwebcs.getbinaryfile.images oimage;
     oimage = new xml.sz.luohuedu.net.aspxwebcs.getbinaryfile.images();
     ///得到二进制文件字节数组;
     byte[] image = oimage.getimage("");
     ///转换为支持存储区为内存的流
     system.io.memorystream memstream = new system.io.memorystream(image);
     ///定义并实例化bitmap对象
     bitmap bm = new bitmap(memstream);
     ///根据不同的条件进行输出或者下载;
     response.clear();
     ///如果请求字符串指定下载,就下载该文件;
     ///否则,就显示在浏览器中。
     if(request.querystring["download"]=="1")
     {
      response.buffer = true;
      response.contenttype = "application/octet-stream";
      ///这里下载输出的文件名字 ok.jpg 为例子,你实际中可以根据情况动态决定。
      response.addheader("content-disposition","attachment;filename=ok.jpg");
     }
     else
      response.contenttype = oimage.getimagetype();
     response.binarywrite(image);
     response.end();
   }

   #region web form designer generated code
   override protected void oninit(eventargs e)
   {
    //
    // codegen:该调用是 asp.net web 窗体设计器所必需的。
 &nbsp;  //
    initializecomponent();
    base.oninit(e);
   }

   /// <summary>
   /// 设计器支持所需的方法 - 不要使用代码编辑器修改
   /// 此方法的内容。
   /// </summary>
   private void initializecomponent()
   {
    this.load += new system.eventhandler(this.page_load);

   }
   #endregion
  }
 }

最后,我们就编写最终的浏览页面:getbinaryfile.aspx,这个文件很简单,只需要aspx文件即可,内容如下:

 <%@ page language="c#" codebehind="getbinaryfile.aspx.cs" autoeventwireup="false"
   inherits="aspxwebcs.getbinaryfile" %>
 <!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
 <html>
   <head>
     <title>通过web services显示和下载文件</title>
     <meta name="generator" content="microsoft visual studio 7.0">
     <meta name="code_language" content="c#">
     <meta name="vs_defaultclientscript" content="javascript">
     <meta name="vs_targetschema" content="http://schemas.microsoft.com/intellisense/ie5">
   </head>
   <body ms_positioning="gridlayout">
     <form id="getbinaryfile" method="post" runat="server">
       <font face="宋体">
         <asp:hyperlink id="hyperlink1" navigateurl="getbinaryfileshow.aspx?download=1"
          runat="server">下载文件</asp:hyperlink>
         <br/>
         <!--下面是直接显示文件-->
         <asp:image id="image1" imageurl="getbinaryfileshow.aspx" runat="server"></asp:image>
       </font>
     </form>
   </body>
 </html>

二:通过web services上载文件

向服务器上载文件可能有许多种方法,在利用web services上载文件的方法中,下面的这个方法应该是最简单的了。我们仍象前面的例子那样,首先建立upload.asmx文件,其upload.asmx.cs内容如下,里面已经做了注释:

 using system;
 using system.collections;
 using system.componentmodel;
 using system.data;
 using system.diagnostics;
 using system.web;
 using system.web.services;
 using system.io;

 namespace xml.sz.luohuedu.net.aspxwebcs
 {
  /// <summary>
  /// upload 的摘要说明。
  /// </summary>
  [webservice(namespace="http://xml.sz.luohuedu.net/",
   description="在web services里利用.net框架进上载文件。")]
  public class upload : system.web.services.webservice
  {
   public upload()
   {
    //codegen:该调用是 asp.net web 服务设计器所必需的
    initializecomponent();
   }

   #region component designer generated code

   //web 服务设计器所必需的
   private icontainer components = null;

   /// <summary>
   /// 设计器支持所需的方法 - 不要使用代码编辑器修改
   /// 此方法的内容。
   /// </summary>
   private void initializecomponent()
   {
   }

   /// <summary>
   /// 清理所有正在使用的资源。
   /// </summary>
   protected override void dispose( bool disposing )
&nbsp;  {
    if(disposing && components != null)
    {
     components.dispose();
    }
    base.dispose(disposing);
   }

   #endregion

   [webmethod(description="web 服务提供的方法,返回是否文件上载成功与否。")]
   public string uploadfile(byte[] fs,string filename)
   {
    try
    {
     ///定义并实例化一个内存流,以存放提交上来的字节数组。
     memorystream m = new memorystream(fs);
     ///定义实际文件对象,保存上载的文件。
     filestream f = new filestream(server.mappath(".") + "//"
      + filename, filemode.create);
     ///把内内存里的数据写入物理文件
     m.writeto(f);
     m.close();
     f.close();
     f = null;
     m = null;
     return "文件已经上传成功。";
    }
    catch(exception ex)
    {
     return ex.message;
    }
   }
 }
 }

要上载文件,必须提供一个表单,来供用户进行文件的选择,下面我们就建立这样一个页面upload.aspx,用来提供文件上载:

<%@ page language="c#" codebehind="upload.aspx.cs" autoeventwireup="false"
   inherits="aspxwebcs.upload" %>
 <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
 <html>
   <head>
     <title>通过web services上载文件</title>
     <meta name="generator" content="microsoft visual studio .net 7.0">
     <meta name="code_language" content="visual basic 7.0">
     <meta name="vs_defaultclientscript" content="javascript">
     <meta name="vs_targetschema" content="http://schemas.microsoft.com/intellisense/ie5">
   </head>
   <body ms_positioning="gridlayout">
     <form id="form1" method="post" runat="server"  enctype="multipart/form-data">
       <input id="myfile" type="file" runat="server">
       <br>
       <br>
       <asp:button id="button1" runat="server" text="上载文件"></asp:button>
     </form>
   </body>
 </html>

我们要进行处理的是在后代码里面,下面详细的介绍,upload.aspx.cs:

 using system;
 using system.collections;
 using system.componentmodel;
 using system.data;
 using system.drawing;
 using system.web;
 using system.web.sessionstate;
 using system.web.ui;
 using system.web.ui.webcontrols;
 using system.web.ui.htmlcontrols;
 using system.web.services;
 using system.io;

 namespace aspxwebcs
 {
  /// <summary>
  /// upload 的摘要说明。
  /// 利用该方法通过web services上载文件
  /// </summary>
  public class upload : system.web.ui.page
  {
   protected system.web.ui.htmlcontrols.htmlinputfile myfile;
   protected system.web.ui.webcontrols.button button1;

   private void page_load(object sender, system.eventargs e)
   {
    // 在此处放置用户代码以初始化页面
   }

   #region web form designer generated code
   override protected void oninit(eventargs e)
 &nbsp; {
    //
    // codegen:该调用是 asp.net web 窗体设计器所必需的。
    //
    initializecomponent();
    base.oninit(e);
   }

   /// <summary>
   /// 设计器支持所需的方法 - 不要使用代码编辑器修改
   /// 此方法的内容。
   /// </summary>
   private void initializecomponent()
   {
    this.button1.click += new system.eventhandler(this.button1_click);
    this.load += new system.eventhandler(this.page_load);

   }
   #endregion

   private void button1_click(object sender, system.eventargs e)
   {
    ///首先得到上载文件信息和文件流
    if(myfile.postedfile != null)
    {
     system.web.httpfilecollection ofiles;
     ofiles = system.web.httpcontext.current.request.files;
     if(ofiles.count < 1)
     {
      response.write ("请选择文件。");
      response.end();
     }

     string filepath = ofiles[0].filename;
     if(filepath == "" || filepath == null)
     {
      response.write ("请选择一个文件。");
      response.end();
     }
     string filename = filepath.substring(filepath.lastindexof("//")+1);
     try
     {
      ///处理上载的文件流信息。
      byte[] b = new byte[ofiles[0].contentlength];
      system.io.stream fs;
      xml.sz.luohuedu.net.aspxwebcs.upload o;
      o = new xml.sz.luohuedu.net.aspxwebcs.upload();
      fs = (system.io.stream)ofiles[0].inputstream;
      fs.read(b, 0, ofiles[0].contentlength);
      ///调用web services的uploadfile方法进行上载文件。
      response.write(o.uploadfile(b, filename));
      fs.close();
     }
     catch(exception ex)
     {
      response.write(ex.message);
     }
    }
    else
    {
  response.write("请选择文件");
 }
   }
  }
 }

最后,需要注意的是:在保存文件时,您应该确保指定文件的完整路径(例如,"c:/myfiles/picture.jpg"),并确保为 asp.net 使用的帐户提供要存储文件的目录的写权限。上载大文件时,可使用 元素的 maxrequestlength 属性来增加文件大小的最大允许值,例如:

 <configuration>
    <system.web>
     <httpruntime maxrequestlength="1048576" executiontimeout="3600" />
    </system.web>
 </configuration>

其中:maxrequestlength:指示 asp.net 支持的http方式上载的最大字节数。该限制可用于防止因用户将大量文件传递到该服务器而导致的拒绝服务攻击。指定的大小以 kb 为单位。默认值为 4096 kb (4 mb)。executiontimeout:指示在被 asp.net 自动关闭前,允许执行请求的最大秒数。在当文件超出指定的大小时,如果浏览器中会产生 dns 错误或者出现服务不可得到的情况,也请修改以上的配置,把配置数加大。

另外,上载大文件时,还可能会收到以下错误信息:

 aspnet_wp.exe (pid: 1520) 被回收,因为内存消耗超过了 460 mb(可用 ram 的百分之 60)。

如果遇到此错误信息,请增加应用程序的 web.config 文件的 元素中 memorylimit 属性的值。例如:

 <configuration>
    <system.web>
       <processmodel memorylimit="80"/>
    </system.web>
 </configuration>

我在自己的机器上测试,可以上传50m以上的文件。以上代码在windows xp + .net 1.0 + vs.net2002下测试通过。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表