分享
 
 
 

通过webservices上传下载文件

王朝other·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

flashicp 整理

最近在用webservices的东西所以就整理了这些文件供大家参考

一:通过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.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS

{

/// <summary>

/// GetBinaryFile 的摘要说明。

/// Web Services名称:GetBinaryFile

/// 功能:返回<a href="http://www.chinaitpower.com/System/Server/index.html" target="_blank">服务器</a>上的一个<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>对象的二进制字节数组。

/// </summary>

[WebService(Namespace="http://xml.sz.luohuedu.net/",

Description="在Web Services里利用.NET框架进行传递二进制<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。")]

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 服务提供的方法,返回给定<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>的字节数组。

/// </summary>

[WebMethod(Description="Web 服务提供的方法,返回给定<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>的字节数组")]

public byte[] GetImage(string requestFileName)

{

///得到<a href="http://www.chinaitpower.com/System/Server/index.html" target="_blank">服务器</a>端的一个图片

///如果你自己测试,注意修改下面的实际物理路径

if(requestFileName == null || requestFileName == "")

return getBinaryFile("D:\\Picture.JPG");

else

return getBinaryFile("D:\\" + requestFileName);

}

/// <summary>

/// getBinaryFile:返回所给<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>路径的字节数组。

/// </summary>

/// <param name="filename"></param>

/// <returns></returns>

public byte[] getBinaryFile(string filename)

{

if(File.Exists(filename))

{

try

{

///打开现有<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>以进行读取。

FileStream s = File.OpenRead(filename);

return ConvertStreamToByteBuffer(s);

}

catch(Exception e)

{

return new byte[0];

}

}

else

{

return new byte[0];

}

}

/// <summary>

/// ConvertStreamToByteBuffer:把给定的<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>流转换为二进制字节数组。

/// </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 服务提供的方法,返回给定<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>类型。")]

public string GetImageType()

{

///这里只是测试,您可以根据实际的<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>类型进行动态输出

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 <a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS

{

/// <summary>

/// GetBinaryFileShow 的摘要说明。

/// </summary>

public class GetBinaryFileShow : System.Web.UI.Page

{

private void Page_Load(object sender, System.EventArgs e)

{

// 在此处放置用户代码以初始化页面

///定义并初始化<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>对象;

xml.sz.luohuedu.net.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.GetBinaryFile.Images oImage;

oImage = new xml.sz.luohuedu.net.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.GetBinaryFile.Images();

///得到二进制<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>字节数组;

byte[] image = oImage.GetImage("");

///转换为支持存储区为内存的流

System.IO.MemoryStream memStream = new System.IO.MemoryStream(image);

///定义并实例化Bitmap对象

Bitmap bm = new Bitmap(memStream);

///根据不同的条件进行输出或者下载;

Response.Clear();

///如果请求<a href="http://www.chinaitpower.com/Dev/Programme/VC/Str/index.html" target="_blank">字符</a>串指定下载,就下载该<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>;

///否则,就显示在浏览器中。

if(Request.QueryString["Download"]=="1")

{

Response.Buffer = true;

Response.ContentType = "application/octet-stream";

///这里下载输出的<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>名字 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 窗体设计器所必需的。

//

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.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>x.cs" AutoEventWireup="false"

Inherits="<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.GetBinaryFile" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

<HTML>

<HEAD>

<title>通过Web Services显示和下载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a></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="宋体">

<<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>:HyperLink id="HyperLink1" NavigateUrl="GetBinaryFileShow.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>x?Download=1"

runat="server">下载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a></<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>:HyperLink>

<br/>

<!--下面是直接显示<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>-->

<<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>:Image id="Image1" ImageUrl="GetBinaryFileShow.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>x" runat="server"></<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>: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.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS

{

/// <summary>

/// Upload 的摘要说明。

/// </summary>

[WebService(Namespace="http://xml.sz.luohuedu.net/",

Description="在Web Services里利用.NET框架进上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。")]

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 )

{

if(disposing && components != null)

{

components.Dispose();

}

base.Dispose(disposing);

}

#endregion

[WebMethod(Description="Web 服务提供的方法,返回是否<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>上载成功与否。")]

public string UploadFile(byte[] fs,string FileName)

{

try

{

///定义并实例化一个内存流,以存放提交上来的字节数组。

MemoryStream m = new MemoryStream(fs);

///定义实际<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>对象,保存上载的<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。

FileStream f = new FileStream(Server.MapPath(".") + "\\"

+ FileName, FileMode.Create);

///把内内存里的数据写入物理<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>

m.WriteTo(f);

m.Close();

f.Close();

f = null;

m = null;

return "<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>已经上传成功。";

}

catch(Exception ex)

{

return ex.Message;

}

}

}

}

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

<%@ Page language="c#" Codebehind="Upload.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>x.cs" AutoEventWireup="false"

Inherits="<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.Upload" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML>

<HEAD>

<title>通过Web Services上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a></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>

<<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>:Button id="Button1" runat="server" Text="上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>"></<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>: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 <a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS

{

/// <summary>

/// Upload 的摘要说明。

/// 利用该方法通过Web Services上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>

/// </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)

{

//

// 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)

{

///首先得到上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>信息和<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>流

if(MyFile.PostedFile != null)

{

System.Web.HttpFileCollection oFiles;

oFiles = System.Web.HttpContext.Current.Request.Files;

if(oFiles.Count < 1)

{

Response.Write ("请选择<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。");

Response.End();

}

string FilePath = oFiles[0].FileName;

if(FilePath == "" || FilePath == null)

{

Response.Write ("请选择一个<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。");

Response.End();

}

string FileName = FilePath.Substring(FilePath.LastIndexOf("\")+1);

try

{

///处理上载的<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>流信息。

byte[] b = new byte[oFiles[0].ContentLength];

System.IO.Stream fs;

xml.sz.luohuedu.net.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.Upload o;

o = new xml.sz.luohuedu.net.<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>xWebCS.Upload();

fs = (System.IO.Stream)oFiles[0].InputStream;

fs.Read(b, 0, oFiles[0].ContentLength);

///调用Web Services的UploadFile方法进行上载<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>。

Response.Write(o.UploadFile(b, FileName));

fs.Close();

}

catch(Exception ex)

{

Response.Write(ex.Message);

}

}

else

{

Response.Write("请选择<a href="http://www.chinaitpower.com/Soft/Tools/File/index.html" target="_blank">文件</a>");

}

}

}

}

最后,需要注意的是:在保存文件时,您应该确保指定文件的完整路径(例如,"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 错误或者出现服务不可得到的情况,也请修改以上的配置,把配置数加大。

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

<a href="http://www.chinaitpower.com/Dev/Web/Asp/index.html" target="_blank">asp</a>net_wp.exe (PID: 1520) 被回收,因为内存消耗超过了 460 MB(可用 RAM 的百分之 60)。

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

<configuration>

<system.web>

<processModel memoryLimit="80"/>

</system.web>

</configuration>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有